From 65832ba81838f40a2c89347de19fd7811d369d12 Mon Sep 17 00:00:00 2001
From: colawwj <70128817+colawwj@users.noreply.github.com>
Date: Wed, 27 Oct 2021 11:35:10 +0800
Subject: [PATCH] appplatform-track2 (#18380)
* appplatform-track2
* update
* update
---
common/config/rush/pnpm-lock.yaml | 39 +-
rush.json | 7 +-
sdk/appplatform/arm-appplatform/CHANGELOG.md | 14 +
.../arm-appplatform/{LICENSE.txt => LICENSE} | 2 +-
sdk/appplatform/arm-appplatform/README.md | 148 +-
sdk/appplatform/arm-appplatform/_meta.json | 7 +
.../arm-appplatform/api-extractor.json | 18 +
sdk/appplatform/arm-appplatform/package.json | 95 +-
.../recording_apps_create_test.js | 899 +
.../recording_apps_delete_test.js | 1115 +
.../recording_apps_get_test.js | 153 +
.../recording_apps_list_test.js | 153 +
.../recording_services_create_test.js | 25803 ++++++++++++++++
.../recording_services_delete_test.js | 5647 ++++
.../recording_services_get_test.js | 153 +
.../recording_services_list_test.js | 153 +
.../review/arm-appplatform.api.md | 1620 +
.../arm-appplatform/rollup.config.js | 211 +-
.../src/appPlatformManagementClient.ts | 119 +-
.../src/appPlatformManagementClientContext.ts | 91 +-
sdk/appplatform/arm-appplatform/src/index.ts | 13 +
.../arm-appplatform/src/lroImpl.ts | 34 +
.../arm-appplatform/src/models/appsMappers.ts | 50 -
.../src/models/bindingsMappers.ts | 47 -
.../src/models/certificatesMappers.ts | 47 -
.../src/models/configServersMappers.ts | 48 -
.../src/models/customDomainsMappers.ts | 47 -
.../src/models/deploymentsMappers.ts | 48 -
.../arm-appplatform/src/models/index.ts | 3980 +--
.../arm-appplatform/src/models/mappers.ts | 2294 +-
.../src/models/monitoringSettingsMappers.ts | 46 -
.../src/models/operationsMappers.ts | 19 -
.../arm-appplatform/src/models/parameters.ts | 244 +-
.../src/models/runtimeVersionsMappers.ts | 13 -
.../src/models/servicesMappers.ts | 51 -
.../arm-appplatform/src/models/skusMappers.ts | 19 -
.../arm-appplatform/src/operations/apps.ts | 901 +-
.../src/operations/bindings.ts | 755 +-
.../src/operations/certificates.ts | 567 +-
.../src/operations/configServers.ts | 515 +-
.../src/operations/customDomains.ts | 753 +-
.../src/operations/deployments.ts | 1720 +-
.../arm-appplatform/src/operations/index.ts | 4 +-
.../src/operations/monitoringSettings.ts | 368 +-
.../src/operations/operations.ts | 152 +-
.../src/operations/runtimeVersions.ts | 63 +-
.../src/operations/services.ts | 1399 +-
.../arm-appplatform/src/operations/skus.ts | 157 +-
.../src/operations/storages.ts | 474 +
.../src/operationsInterfaces/apps.ts | 186 +
.../src/operationsInterfaces/bindings.ts | 170 +
.../src/operationsInterfaces/certificates.ts | 115 +
.../src/operationsInterfaces/configServers.ts | 136 +
.../src/operationsInterfaces/customDomains.ts | 170 +
.../src/operationsInterfaces/deployments.ts | 412 +
.../src/operationsInterfaces/index.ts | 20 +
.../monitoringSettings.ts | 100 +
.../src/operationsInterfaces/operations.ts | 22 +
.../operationsInterfaces/runtimeVersions.ts | 23 +
.../src/operationsInterfaces/services.ts | 268 +
.../src/operationsInterfaces/skus.ts | 22 +
.../src/operationsInterfaces/storages.ts | 115 +
.../test/appplatform_examples.ts | 140 +
sdk/appplatform/arm-appplatform/tsconfig.json | 6 +-
sdk/appplatform/ci.yml | 29 +
65 files changed, 46528 insertions(+), 6681 deletions(-)
create mode 100644 sdk/appplatform/arm-appplatform/CHANGELOG.md
rename sdk/appplatform/arm-appplatform/{LICENSE.txt => LICENSE} (99%)
create mode 100644 sdk/appplatform/arm-appplatform/_meta.json
create mode 100644 sdk/appplatform/arm-appplatform/api-extractor.json
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_create_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_delete_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_get_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_list_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_create_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_delete_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_get_test.js
create mode 100644 sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_list_test.js
create mode 100644 sdk/appplatform/arm-appplatform/review/arm-appplatform.api.md
create mode 100644 sdk/appplatform/arm-appplatform/src/index.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/lroImpl.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/appsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/bindingsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/certificatesMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/configServersMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/customDomainsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/deploymentsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/monitoringSettingsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/operationsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/runtimeVersionsMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/servicesMappers.ts
delete mode 100644 sdk/appplatform/arm-appplatform/src/models/skusMappers.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operations/storages.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/apps.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/bindings.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/certificates.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/configServers.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/customDomains.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/deployments.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/index.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/monitoringSettings.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/operations.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/runtimeVersions.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/services.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/skus.ts
create mode 100644 sdk/appplatform/arm-appplatform/src/operationsInterfaces/storages.ts
create mode 100644 sdk/appplatform/arm-appplatform/test/appplatform_examples.ts
create mode 100644 sdk/appplatform/ci.yml
diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml
index af5974ea04f1..af96992b1e09 100644
--- a/common/config/rush/pnpm-lock.yaml
+++ b/common/config/rush/pnpm-lock.yaml
@@ -10,6 +10,7 @@ specifiers:
'@rush-temp/ai-text-analytics': file:./projects/ai-text-analytics.tgz
'@rush-temp/app-configuration': file:./projects/app-configuration.tgz
'@rush-temp/arm-apimanagement': file:./projects/arm-apimanagement.tgz
+ '@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-compute': file:./projects/arm-compute.tgz
@@ -148,6 +149,7 @@ dependencies:
'@rush-temp/ai-text-analytics': file:projects/ai-text-analytics.tgz
'@rush-temp/app-configuration': file:projects/app-configuration.tgz
'@rush-temp/arm-apimanagement': file:projects/arm-apimanagement.tgz
+ '@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-compute': file:projects/arm-compute.tgz
@@ -698,7 +700,7 @@ packages:
resolution: {integrity: sha512-Q71Buur3RMcg6lCnisLL8Im562DBw+ybzgm+YQj/FbAaI8ZNu/zl/5z1fE4k3Q9LSIzYrz6HLRzlhdSBXpydlQ==}
engines: {node: '>=8.0.0'}
dependencies:
- '@azure/core-http': 1.2.3
+ '@azure/core-http': 1.2.6
'@azure/core-tracing': 1.0.0-preview.9
'@azure/logger': 1.0.3
'@azure/msal-node': 1.0.0-beta.6_debug@4.3.2
@@ -1556,7 +1558,6 @@ packages:
/@opentelemetry/node/0.22.0_@opentelemetry+api@1.0.3:
resolution: {integrity: sha512-+HhGbDruQ7cwejVOIYyxRa28uosnG8W95NiQZ6qE8PXXPsDSyGeftAPbtYpGit0H2f5hrVcMlwmWHeAo9xkSLA==}
engines: {node: '>=8.0.0'}
- deprecated: Package renamed to @opentelemetry/sdk-trace-node
peerDependencies:
'@opentelemetry/api': ^1.0.0
dependencies:
@@ -3168,7 +3169,7 @@ packages:
resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==}
deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
dependencies:
- ms: 2.1.1
+ ms: 2.1.3
dev: false
/debug/3.2.7:
@@ -7945,7 +7946,7 @@ packages:
/wide-align/1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
dependencies:
- string-width: 1.0.2
+ string-width: 4.2.3
dev: false
/word-wrap/1.2.3:
@@ -8602,6 +8603,30 @@ packages:
- supports-color
dev: false
+ file:projects/arm-appplatform.tgz:
+ resolution: {integrity: sha512-15DNfLDgoFCvpMnOXeTUvM6JaMX4itfDHbbssMmedCSBRsuoIYI7v+Aqoe6PlM0X5j3ihRh28DE3TuaGK3zz3g==, tarball: file:projects/arm-appplatform.tgz}
+ name: '@rush-temp/arm-appplatform'
+ version: 0.0.0
+ dependencies:
+ '@azure/identity': 2.0.0-beta.6
+ '@microsoft/api-extractor': 7.7.11
+ '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1
+ '@rollup/plugin-json': 4.1.0_rollup@1.32.1
+ '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1
+ '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1
+ cross-env: 7.0.3
+ mkdirp: 1.0.4
+ mocha: 7.2.0
+ rollup: 1.32.1
+ rollup-plugin-sourcemaps: 0.4.2_rollup@1.32.1
+ tslib: 2.3.1
+ typescript: 4.2.4
+ uglify-js: 3.14.2
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+ dev: false
+
file:projects/arm-appservice.tgz:
resolution: {integrity: sha512-aJraI3T9AOAXBy7uKxYZ7jX01W4DOG73u2YEMJ1PdasBSnwJ/SjH9ZI5RT1CbaRqdUAuJsFBhHJdDKc0mXQG2A==, tarball: file:projects/arm-appservice.tgz}
name: '@rush-temp/arm-appservice'
@@ -9031,7 +9056,7 @@ packages:
rollup-plugin-sourcemaps: 0.4.2_rollup@1.32.1
tslib: 2.3.1
typescript: 4.2.4
- uglify-js: 3.14.1
+ uglify-js: 3.14.2
transitivePeerDependencies:
- debug
- supports-color
@@ -10945,7 +10970,7 @@ packages:
dev: false
file:projects/identity-cache-persistence.tgz:
- resolution: {integrity: sha512-/qOeCqcA6FIkVLhPPvQ3ON7NLj985WmFmCpWv9YXZiGn9FhHtYPDEA34TvH//2SPgDFgXly+VbFP8yfhlOQlBQ==, tarball: file:projects/identity-cache-persistence.tgz}
+ resolution: {integrity: sha512-3JyQL9fe8EcA/mzMjRHb6XGAuZWCfcSKf2Qnoohi5FEIRDUimDr6FLUKyKeKDieTC8PH1+Fc3NWa9/3u+X5MgQ==, tarball: file:projects/identity-cache-persistence.tgz}
name: '@rush-temp/identity-cache-persistence'
version: 0.0.0
dependencies:
@@ -10982,7 +11007,7 @@ packages:
dev: false
file:projects/identity-vscode.tgz:
- resolution: {integrity: sha512-Ac1SoH1TJ8l6PzTixnUmQfJxcqaytt6ANn5CFVvXnLTfKRmJuOxUuFkgmhDUbzmKwqjIECpLFYa2fUaETxKK/Q==, tarball: file:projects/identity-vscode.tgz}
+ resolution: {integrity: sha512-d/IX9fw5xORK5H4q4Tv5J8Z6eEvT1MLVElGIYD9H7RvdyfO40t4Yi57jrbXbGNaF1/dOzyO2GANZsSlTNYjxYA==, tarball: file:projects/identity-vscode.tgz}
name: '@rush-temp/identity-vscode'
version: 0.0.0
dependencies:
diff --git a/rush.json b/rush.json
index ea407f68eee8..6e090b9d2dd2 100644
--- a/rush.json
+++ b/rush.json
@@ -1000,6 +1000,11 @@
"packageName": "@azure/arm-recoveryservices",
"projectFolder": "sdk/recoveryservices/arm-recoveryservices",
"versionPolicyName": "management"
+ },
+ {
+ "packageName": "@azure/arm-appplatform",
+ "projectFolder": "sdk/appplatform/arm-appplatform",
+ "versionPolicyName": "management"
}
]
-}
\ No newline at end of file
+}
diff --git a/sdk/appplatform/arm-appplatform/CHANGELOG.md b/sdk/appplatform/arm-appplatform/CHANGELOG.md
new file mode 100644
index 000000000000..7ae9c77ddf3c
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/CHANGELOG.md
@@ -0,0 +1,14 @@
+## 2.0.0-beta.1 (2021-10-26)
+
+This is the first preview for the new version of the `@azure/arm-appplatform` 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/appplatform/arm-appplatform/LICENSE.txt b/sdk/appplatform/arm-appplatform/LICENSE
similarity index 99%
rename from sdk/appplatform/arm-appplatform/LICENSE.txt
rename to sdk/appplatform/arm-appplatform/LICENSE
index 2d3163745319..ccb63b166732 100644
--- a/sdk/appplatform/arm-appplatform/LICENSE.txt
+++ b/sdk/appplatform/arm-appplatform/LICENSE
@@ -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/appplatform/arm-appplatform/README.md b/sdk/appplatform/arm-appplatform/README.md
index c06e938283f7..02a43d41f398 100644
--- a/sdk/appplatform/arm-appplatform/README.md
+++ b/sdk/appplatform/arm-appplatform/README.md
@@ -1,112 +1,94 @@
-## Azure AppPlatformManagementClient SDK for JavaScript
+# Azure AppPlatformManagement client library for JavaScript
-This package contains an isomorphic SDK (runs both in Node.js and in browsers) for AppPlatformManagementClient.
+This package contains an isomorphic SDK (runs both in Node.js and in browsers) for Azure AppPlatformManagement client.
+
+REST API for Azure Spring Cloud
+
+[Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/appplatform/arm-appplatform) |
+[Package (NPM)](https://www.npmjs.com/package/@azure/arm-appplatform) |
+[API reference documentation](https://docs.microsoft.com/javascript/api/@azure/arm-appplatform) |
+[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-appplatform` package
-To use this SDK in your project, you will need to install two packages.
-- `@azure/arm-appplatform` that contains the client.
-- `@azure/identity` that provides different mechanisms for the client to authenticate your requests using Azure Active Directory.
+Install the Azure AppPlatformManagement client library for JavaScript with `npm`:
-Install both packages using the below command:
```bash
-npm install --save @azure/arm-appplatform @azure/identity
+npm install @azure/arm-appplatform
```
-> **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 `AppPlatformManagementClient`
-### How to use
+To create a client object to access the Azure AppPlatformManagement API, you will need the `endpoint` of your Azure AppPlatformManagement resource and a `credential`. The Azure AppPlatformManagement client can use Azure Active Directory credentials to authenticate.
+You can find the endpoint for your Azure AppPlatformManagement 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 services as an example written in JavaScript.
+You will also need to **register a new AAD application and grant access to Azure AppPlatformManagement** 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 { AppPlatformManagementClient } = require("@azure/arm-appplatform");
-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 AppPlatformManagementClient(creds, subscriptionId);
-const resourceGroupName = "testresourceGroupName";
-const serviceName = "testserviceName";
-client.services.get(resourceGroupName, serviceName).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 AppPlatformManagementClient(new DefaultAzureCredential(), subscriptionId);
```
-#### browser - Authentication, client creation, and get services 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-appplatform sample
-
-
-
-
-
-
-
+## Key concepts
+
+### AppPlatformManagementClient
+
+`AppPlatformManagementClient` is the primary interface for developers using the Azure AppPlatformManagement client library. Explore the methods on this client object to understand the different features of the Azure AppPlatformManagement 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%2Fappplatform%2Farm-appplatform%2FREADME.png)
-![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/appplatform/arm-appplatform/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/appplatform/arm-appplatform/_meta.json b/sdk/appplatform/arm-appplatform/_meta.json
new file mode 100644
index 000000000000..a7ff85557417
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/_meta.json
@@ -0,0 +1,7 @@
+{
+ "commit": "b836a957a2143cffb4d15df70d8e928743871c3f",
+ "readme": "specification/appplatform/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/appplatform/resource-manager/readme.md --use=@autorest/typescript@6.0.0-beta.13",
+ "repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
+ "use": "@autorest/typescript@6.0.0-beta.13"
+}
\ No newline at end of file
diff --git a/sdk/appplatform/arm-appplatform/api-extractor.json b/sdk/appplatform/arm-appplatform/api-extractor.json
new file mode 100644
index 000000000000..793f39015ecc
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/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-appplatform.d.ts"
+ },
+ "messages": {
+ "tsdocMessageReporting": { "default": { "logLevel": "none" } },
+ "extractorMessageReporting": {
+ "ae-missing-release-tag": { "logLevel": "none" },
+ "ae-unresolved-link": { "logLevel": "none" }
+ }
+ }
+}
diff --git a/sdk/appplatform/arm-appplatform/package.json b/sdk/appplatform/arm-appplatform/package.json
index 048062d2f2ef..8f2822b9d76e 100644
--- a/sdk/appplatform/arm-appplatform/package.json
+++ b/sdk/appplatform/arm-appplatform/package.json
@@ -1,58 +1,91 @@
{
"name": "@azure/arm-appplatform",
+ "sdk-type": "mgmt",
"author": "Microsoft Corporation",
- "description": "AppPlatformManagementClient Library with typescript type definitions for node.js and browser.",
- "version": "1.3.0",
+ "description": "A generated SDK for AppPlatformManagementClient.",
+ "version": "2.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": "^1.10.0"
+ "@azure/core-lro": "^2.2.0",
+ "@azure/abort-controller": "^1.0.0",
+ "@azure/core-paging": "^1.1.1",
+ "@azure/core-client": "^1.0.0",
+ "@azure/core-auth": "^1.3.0",
+ "@azure/core-rest-pipeline": "^1.1.0",
+ "tslib": "^2.2.0"
},
- "keywords": [
- "node",
- "azure",
- "typescript",
- "browser",
- "isomorphic"
- ],
+ "keywords": ["node", "azure", "typescript", "browser", "isomorphic"],
"license": "MIT",
- "main": "./dist/arm-appplatform.js",
- "module": "./esm/appPlatformManagementClient.js",
- "types": "./esm/appPlatformManagementClient.d.ts",
+ "main": "./dist/index.js",
+ "module": "./dist-esm/src/index.js",
+ "types": "./types/arm-appplatform.d.ts",
"devDependencies": {
- "typescript": "^3.6.0",
- "rollup": "^1.18.0",
- "rollup-plugin-node-resolve": "^5.2.0",
+ "@microsoft/api-extractor": "7.7.11",
+ "@rollup/plugin-commonjs": "11.0.2",
+ "@rollup/plugin-json": "^4.0.0",
+ "@rollup/plugin-multi-entry": "^3.0.0",
+ "@rollup/plugin-node-resolve": "^8.0.0",
+ "mkdirp": "^1.0.4",
+ "rollup": "^1.16.3",
"rollup-plugin-sourcemaps": "^0.4.2",
- "uglify-js": "^3.6.0"
+ "typescript": "~4.2.0",
+ "uglify-js": "^3.4.9",
+ "@azure/identity": "2.0.0-beta.6",
+ "@azure-tools/test-recorder": "^1.0.0",
+ "mocha": "^7.1.1",
+ "cross-env": "^7.0.2"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/appplatform/arm-appplatform",
"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-appplatform.js.map'\" -o ./dist/arm-appplatform.min.js ./dist/arm-appplatform.js",
- "prepack": "npm install && npm run build"
+ "build": "tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api",
+ "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
+ "prepack": "npm run build",
+ "pack": "npm pack 2>&1",
+ "extract-api": "api-extractor run --local",
+ "lint": "echo skipped",
+ "audit": "echo skipped",
+ "clean": "echo skipped",
+ "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",
+ "prebuild": "echo skipped",
+ "test:node": "echo skipped",
+ "test:browser": "echo skipped",
+ "unit-test": "npm run unit-test:node && npm run unit-test:browser",
+ "unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node",
+ "unit-test:browser": "echo skipped",
+ "integration-test": "npm run integration-test:node && npm run integration-test:browser",
+ "integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts",
+ "integration-test:browser": "echo skipped",
+ "docs": "echo skipped"
},
"sideEffects": false,
"autoPublish": true
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_create_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_create_test.js
new file mode 100644
index 000000000000..8bea914a4164
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_create_test.js
@@ -0,0 +1,899 @@
+let nock = require('nock');
+
+module.exports.hash = "96a625fc9152780897db70e104daf3ae";
+
+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',
+ 'bf80b568-724d-4ed5-bdfa-5b1c045c0300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AtCb21qB2WVFlLSLyMoZ-B0; expires=Fri, 26-Nov-2021 02:03:51 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFpgR1PkNyBvKyTdmZ0kK9ZrRD9J77MJU9GkY7yu_2HfILx-3vq0_tJPMlCkaKYHDjGzuokN3x05wCa0KznL7N5BznuJ0O6EvSVNqrMAlbwKprmM2fcWFGqlL20fRjHB-Pv_4mnmAJrcrbIxk8MCXqExstSXZz0lzHlROpGJ0BD0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03: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',
+ '6b976584-20f0-4803-8579-93ba52782400',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR1 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AnFAoK45gahCnCEVEXHqfvs; expires=Fri, 26-Nov-2021 02:03:51 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEEgtkw_BVN2cJfZaYZ4Qdh4rp1i315Yg_whitIUIqJCdkFkCSoNqTD1l27TmCTq4FTnzYy99y6YkQEkj6Lf_BvQTcRmVr3J09IQy-AEiM-tdtUKiA53xwT61hMRbLi2WwYvKiSzTmL9Q9ZWLaVLr77dwtW91IgmIOOQ89kQKtc4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:50 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=22436567-b364-46ef-885f-227c12e804a9&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',
+ 'bf80b568-724d-4ed5-bdfa-5b1c065c0300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR2 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=AvZF_A2Tds1Ao7Ag6q4NDk4WPr5BAQAAAIeqCtkOAAAA; expires=Fri, 26-Nov-2021 02:03: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',
+ 'Wed, 27 Oct 2021 02:03:51 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx/apps/myappxxx', {"properties":{"public":true,"activeDeploymentName":"mydeployment1","fqdn":"myapp.mydomain.com","httpsOnly":false,"temporaryDisk":{"sizeInGB":2,"mountPath":"/mytemporarydisk"},"persistentDisk":{"sizeInGB":2,"mountPath":"/mypersistentdisk"}}})
+ .query(true)
+ .reply(201, {"properties":{"public":true,"provisioningState":"Creating","httpsOnly":false,"temporaryDisk":{"sizeInGB":2,"mountPath":"/mytemporarydisk"},"persistentDisk":{"sizeInGB":2,"mountPath":"/mypersistentdisk"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx/apps/myappxxx","name":"myappxxx"}, [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Content-Length',
+ '477',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Expires',
+ '-1',
+ 'Location',
+ 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationResults/4faac10c-2b5b-4e7b-a69b-a21644ab0107/Spring/myappxxx?api-version=2021-09-01-preview',
+ 'x-ms-ratelimit-remaining-subscription-resource-requests',
+ '1198',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '67730fb3-d6b2-4533-9d2e-33a1b013a190',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Azure-AsyncOperation',
+ 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107?api-version=2021-09-01-preview',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-request-id',
+ '28249a42-db0e-460e-b0db-1a0174482c6d',
+ 'x-ms-correlation-request-id',
+ '28249a42-db0e-460e-b0db-1a0174482c6d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020352Z:28249a42-db0e-460e-b0db-1a0174482c6d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7e30b6f4-8043-4598-94d3-50b47cc70ea4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10881',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0edc6647-9dd3-4baa-ba7c-2ed3c8424258',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7e30b6f4-8043-4598-94d3-50b47cc70ea4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020353Z:7e30b6f4-8043-4598-94d3-50b47cc70ea4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '17841bfa-c55b-4b6c-9389-3246056806cb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10880',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fe623241-59af-47fb-a866-ed14f11985c2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '17841bfa-c55b-4b6c-9389-3246056806cb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020353Z:17841bfa-c55b-4b6c-9389-3246056806cb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '604204e5-0d14-42c6-94b0-b1ec113c7bdf',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10879',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9153f5c0-cee4-4338-a98b-c41735902f49',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '604204e5-0d14-42c6-94b0-b1ec113c7bdf',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020353Z:604204e5-0d14-42c6-94b0-b1ec113c7bdf',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'db832a5a-fbb8-400e-8fb8-2769208132b6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10878',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2882c7ec-ed45-429d-8191-2c17b3f59763',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'db832a5a-fbb8-400e-8fb8-2769208132b6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020354Z:db832a5a-fbb8-400e-8fb8-2769208132b6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e5f9f894-cf9d-4423-a17f-73cc1533b0d3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10877',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '344f08c6-1f24-4df9-9656-c70bb7c57303',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e5f9f894-cf9d-4423-a17f-73cc1533b0d3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020354Z:e5f9f894-cf9d-4423-a17f-73cc1533b0d3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1e188deb-e12a-457e-ba75-c9e295cf5dec',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10876',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '35ddfc33-7739-47a5-be99-08a23a282ba4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1e188deb-e12a-457e-ba75-c9e295cf5dec',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020354Z:1e188deb-e12a-457e-ba75-c9e295cf5dec',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bcac203a-1d06-4e5e-bbbf-1029ca319323',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10875',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '54c532aa-bfaa-454f-af91-34fb347cf3dd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bcac203a-1d06-4e5e-bbbf-1029ca319323',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020355Z:bcac203a-1d06-4e5e-bbbf-1029ca319323',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3106ab15-56a4-423b-9fcb-ea0dfe1b84ba',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10874',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b365e8bb-cd1c-473c-8729-bc9b1cff57f9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3106ab15-56a4-423b-9fcb-ea0dfe1b84ba',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020355Z:3106ab15-56a4-423b-9fcb-ea0dfe1b84ba',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c534b703-9b81-458f-8d54-fbda08ec3b99',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10873',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '972a2a30-6516-4b8c-bcec-4998ec45d66a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c534b703-9b81-458f-8d54-fbda08ec3b99',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020355Z:c534b703-9b81-458f-8d54-fbda08ec3b99',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '62d99ca5-9883-4a59-848c-f88188e9706a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10872',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '381893ce-74ba-48fd-a8fd-e65e1063a9b2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '62d99ca5-9883-4a59-848c-f88188e9706a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020356Z:62d99ca5-9883-4a59-848c-f88188e9706a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1568e448-2541-445b-9855-8dc9f1468d50',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10871',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '13442e73-5235-4380-8c6b-2e7c3f4f247f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1568e448-2541-445b-9855-8dc9f1468d50',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020356Z:1568e448-2541-445b-9855-8dc9f1468d50',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8e92d083-34bb-479e-84d0-723c7efeb49b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10870',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ce42ed87-8226-4a5c-9024-5fc8dff353e9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8e92d083-34bb-479e-84d0-723c7efeb49b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020357Z:8e92d083-34bb-479e-84d0-723c7efeb49b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a47df365-b324-4fcb-b339-22b610cbbfa7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10869',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a7fa8630-df43-4727-9bea-6f5744de1f2b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a47df365-b324-4fcb-b339-22b610cbbfa7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020357Z:a47df365-b324-4fcb-b339-22b610cbbfa7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eeaac27f-8bb8-4bee-ac74-8c26e562776f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10868',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '580385a2-8b33-45bf-be6c-1233ed0df7ce',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eeaac27f-8bb8-4bee-ac74-8c26e562776f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020357Z:eeaac27f-8bb8-4bee-ac74-8c26e562776f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b12e6ec-7c06-4d2a-aa9e-b8eb1097429a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10867',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'df7baba6-9f15-4da0-b8e3-f33bd5f0abbc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b12e6ec-7c06-4d2a-aa9e-b8eb1097429a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020358Z:2b12e6ec-7c06-4d2a-aa9e-b8eb1097429a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fb57ebe5b2585ec84775fba660287b3b7bbbdbbb3bdb7b0fdeecec3ddab9f7e8fedef8c1eec3bdfb9ffed447bf","e4ff01f6b8f77f39010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cd8d7fbc-2576-4c48-9205-1d4a601a0420',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10866',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3e07091b-f3ec-425d-8a43-42f53d1c8c8c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cd8d7fbc-2576-4c48-9205-1d4a601a0420',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020358Z:cd8d7fbc-2576-4c48-9205-1d4a601a0420',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/4faac10c-2b5b-4e7b-a69b-a21644ab0107')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbfbe75936dddd996eef4dee4fb6f7f30793edecd387f4cfdeeea7fbfbd9646777e7c147a38f96d922a7e1dcb275c31d52fbd7ebe934cf67f94c3eacdb3705c3d9dbd9dbdddeddd9de7bf06667efd1cebd47f7f7c60f761feeddfff4a7a865be9c0db67b38deb9779f3a7bf8531f","fd92ff07d9c43ee064010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '03c0396d-6457-41a9-90e6-6060b40416a2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10865',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '46d33b2f-f913-4400-abf4-8b5bda5f3808',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '03c0396d-6457-41a9-90e6-6060b40416a2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020359Z:03c0396d-6457-41a9-90e6-6060b40416a2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:58 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_delete_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_delete_test.js
new file mode 100644
index 000000000000..2b25251ae26f
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_delete_test.js
@@ -0,0 +1,1115 @@
+let nock = require('nock');
+
+module.exports.hash = "cc2b47252f86363a1fa635b90df804dd";
+
+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',
+ '2e8633a5-c0fd-4bc7-80d5-d3328c3e2900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR1 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=Aoi9eAlFBIZGtOtAmKvu0Rk; expires=Fri, 26-Nov-2021 02:04:03 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQ-6ehr3RS05zeVAzCKTi2H26NItgGj47_xzjOLYYFV1MlPdkpie-nxPnIPAMYM_CBj0rE2HJ9Qmom7md4bgWPDqG2ZGtLBNbVmwgH_1tYoORkU3dK8ZwC_vEsF3IAbEk2dBnwlKB27b-u3u3_IpX0btjTXpCK9WJcPJ6Lrupo0MgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:02 GMT',
+ 'Content-Length',
+ '980'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration')
+ .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [
+ 'Cache-Control',
+ 'max-age=86400, private',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'Access-Control-Allow-Origin',
+ '*',
+ 'Access-Control-Allow-Methods',
+ 'GET, OPTIONS',
+ 'P3P',
+ 'CP="DSP CUR OTPi IND OTRi ONL FIN"',
+ 'x-ms-request-id',
+ '2e8633a5-c0fd-4bc7-80d5-d3328f3e2900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR1 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=At3Zx0fFVZJEmRunqDiUfq0; expires=Fri, 26-Nov-2021 02:04:03 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryPJOq1WMVQXERv2BMW1SSO-31sQBSfFSy-_Qx25G3UhJeHpEPYybXVWtJZm05EvRQK5dzdE4DQgQr2p4RTGPS2P4DnjKVXSsn0YISYKzPxoNU4yknO7KJw04kNclJJ2dlkLlS5vZQBsG4CyKh6aINDHS2pPQXKDe41KK6P6rjmUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:02 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5bfe4f54-e244-49f6-998c-27651f2b12f2&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',
+ '2e8633a5-c0fd-4bc7-80d5-d332913e2900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR1 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=AsuWYJaMrlFCl13hMQyIShUWPr5BAQAAAJOqCtkOAAAA; expires=Fri, 26-Nov-2021 02:04:04 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:03 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx/apps/myappxxx')
+ .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.AppPlatform/locations/eastus/operationResults/ce0edfe5-cff8-46af-a56c-5d10f5435a7d/Spring/myappxxx?api-version=2021-09-01-preview',
+ 'x-ms-ratelimit-remaining-subscription-deletes',
+ '14997',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '82ec7bad-635e-481b-a7ee-deac22921df3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Azure-AsyncOperation',
+ 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d?api-version=2021-09-01-preview',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-request-id',
+ '989a9dfd-0a7b-4ee1-9e0b-732751dacb72',
+ 'x-ms-correlation-request-id',
+ '989a9dfd-0a7b-4ee1-9e0b-732751dacb72',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020404Z:989a9dfd-0a7b-4ee1-9e0b-732751dacb72',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:03 GMT',
+ 'Content-Length',
+ '0'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3093e316-448d-4355-a0e3-80b5503d426c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10864',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'eeba0bee-18eb-492a-afe5-23cb680a3cc4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3093e316-448d-4355-a0e3-80b5503d426c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020404Z:3093e316-448d-4355-a0e3-80b5503d426c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '166f62cd-2f1e-46a6-8b0d-e991f30c034f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10863',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'faf552b8-b262-4796-92ef-398fb6a10b4f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '166f62cd-2f1e-46a6-8b0d-e991f30c034f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020405Z:166f62cd-2f1e-46a6-8b0d-e991f30c034f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cf56b486-c474-4f79-8b60-c1edfad94a07',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10862',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dc25abe2-c8e5-4f06-9385-57cd45e7c015',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cf56b486-c474-4f79-8b60-c1edfad94a07',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020405Z:cf56b486-c474-4f79-8b60-c1edfad94a07',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e2e85b79-4159-40f6-8e4b-a00ddb545acf',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10861',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '93d88475-4d32-4e99-9736-5792b6b6e484',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e2e85b79-4159-40f6-8e4b-a00ddb545acf',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020405Z:e2e85b79-4159-40f6-8e4b-a00ddb545acf',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b94de220-ba09-40e9-8342-7050560b088d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10860',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8c62f047-b10c-4fe0-8427-9fa8ab856007',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b94de220-ba09-40e9-8342-7050560b088d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020406Z:b94de220-ba09-40e9-8342-7050560b088d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd08fef33-72c4-4b6f-b7e1-57c21e492fc2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10859',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '623aa9d0-b672-4ca4-b97c-e46e3169812e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd08fef33-72c4-4b6f-b7e1-57c21e492fc2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020407Z:d08fef33-72c4-4b6f-b7e1-57c21e492fc2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3fc3ccc8-412e-4d9d-b47b-d4a2745565d3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10858',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '393abf6a-47dc-4821-95ba-5fcc9c491ee3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3fc3ccc8-412e-4d9d-b47b-d4a2745565d3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020407Z:3fc3ccc8-412e-4d9d-b47b-d4a2745565d3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5ac403d3-a793-4954-a07c-8524d935873f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10857',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '36002ac9-6faf-4db6-9519-9d1c6cf1a4ac',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5ac403d3-a793-4954-a07c-8524d935873f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020408Z:5ac403d3-a793-4954-a07c-8524d935873f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '734637b9-29d6-4eee-a906-83782640ee1a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10856',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5e78641a-4f97-416f-ab45-a5ea8d148e9a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '734637b9-29d6-4eee-a906-83782640ee1a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020408Z:734637b9-29d6-4eee-a906-83782640ee1a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3d0917e1-a00c-4dc2-b826-e14e23dd08d7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10855',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1fa948d8-9b26-4f48-b614-7a7e88fcd2b3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3d0917e1-a00c-4dc2-b826-e14e23dd08d7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020409Z:3d0917e1-a00c-4dc2-b826-e14e23dd08d7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '56fd5430-7726-4e27-8393-bbfba4b39526',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10854',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c93df311-5d84-48b1-9645-a53ef45ce27c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '56fd5430-7726-4e27-8393-bbfba4b39526',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020409Z:56fd5430-7726-4e27-8393-bbfba4b39526',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '05f69572-dbe6-49aa-ac1b-fb5d35e813bf',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10853',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1e701f1b-176d-4961-b88a-9669cad10892',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '05f69572-dbe6-49aa-ac1b-fb5d35e813bf',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020409Z:05f69572-dbe6-49aa-ac1b-fb5d35e813bf',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ea5459bd-93d2-4cdf-b8ca-a99719c23308',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10852',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '493c13e6-fe93-4f53-922e-5fdfb2aafa2b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ea5459bd-93d2-4cdf-b8ca-a99719c23308',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020410Z:ea5459bd-93d2-4cdf-b8ca-a99719c23308',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '105afe3d-86f5-4ec1-a8eb-a820899ed1a3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10851',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '39ea2fec-8d27-451a-a69a-af7450d0a9d9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '105afe3d-86f5-4ec1-a8eb-a820899ed1a3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020410Z:105afe3d-86f5-4ec1-a8eb-a820899ed1a3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2317a09d-2a80-476b-abcf-f027b616133c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10850',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c0824f7f-9e95-4915-999c-42a85164b669',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2317a09d-2a80-476b-abcf-f027b616133c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020410Z:2317a09d-2a80-476b-abcf-f027b616133c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5ccc6c2f-1a91-4596-9733-50659fba85a5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10849',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '275c9f2c-c18a-419a-9ff3-668d9478db3f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5ccc6c2f-1a91-4596-9733-50659fba85a5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020411Z:5ccc6c2f-1a91-4596-9733-50659fba85a5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '69e1863d-d0fe-407a-a240-be7e8346a00b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10848',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '53127930-de78-4289-ab7b-cda4473efd65',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '69e1863d-d0fe-407a-a240-be7e8346a00b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020411Z:69e1863d-d0fe-407a-a240-be7e8346a00b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '79290957-190a-4853-ac59-cadc1ff7e732',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10847',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9eff8e0b-2b58-4395-b505-8a0cb6de2017',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '79290957-190a-4853-ac59-cadc1ff7e732',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020411Z:79290957-190a-4853-ac59-cadc1ff7e732',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eac6fabc-e663-41cb-b219-106303dd4e9b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10846',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3dda532d-82f2-4ecb-935a-6aca37cf80c7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eac6fabc-e663-41cb-b219-106303dd4e9b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020412Z:eac6fabc-e663-41cb-b219-106303dd4e9b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1ce3efd6f7c6fffde83879f7efa531f","fd92ff070bad99e63a010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2758b3a7-4793-466a-ac42-d6860915f153',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10845',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd2bfa893-8329-4523-85e3-551fd761f1f2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2758b3a7-4793-466a-ac42-d6860915f153',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020412Z:2758b3a7-4793-466a-ac42-d6860915f153',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myappxxx/operationId/ce0edfe5-cff8-46af-a56c-5d10f5435a7d')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c67abd5bb77efdc1767b3bbd37c279f9de7f7b7a7e7e707dbfb9f66e7dbd9fd4fa7dbf767bb3be7f7f7efddcf1ecc3e1a7db4cc16390de796ad1bee90dabf5e4fa7793ecbf5c3ba7d53309cbd9dbdddeddd9dedbd076f76f61eedecd3ffc6f7f6ef3d78f8e9a73f454df3e56ca8e1eedef8fea7bb3b0f1eeefdd447bf","e4ff01dc1ee27b65010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7222d6df-6cdf-43c0-9593-fd1f08efb69e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10844',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '932f3078-968c-4a23-925b-c7e757d456e2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7222d6df-6cdf-43c0-9593-fd1f08efb69e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020412Z:7222d6df-6cdf-43c0-9593-fd1f08efb69e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx/apps')
+ .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-resource-requests',
+ '11994',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e6089ab5-2ffc-4d49-9aab-6c8fb757d6b1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-request-id',
+ 'cfeb33fd-39ba-4733-bbee-e948699bf6fd',
+ 'x-ms-correlation-request-id',
+ 'cfeb33fd-39ba-4733-bbee-e948699bf6fd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020413Z:cfeb33fd-39ba-4733-bbee-e948699bf6fd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:12 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_get_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_get_test.js
new file mode 100644
index 000000000000..e0b375fcaf1d
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_get_test.js
@@ -0,0 +1,153 @@
+let nock = require('nock');
+
+module.exports.hash = "7bfb7ea332b8c00b4c96c259c5015c4f";
+
+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',
+ '61682844-3496-487a-99ec-6ec84efd2300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AhXie_p2HNhNszwBKULRSZc; expires=Fri, 26-Nov-2021 02:04:00 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrlF5LVaRRxNy5KtoDsvV7b20WGTbRxRHUllcaGjx6P3YZSZL_VFv80LhStDbncUiHQcgHvXDv-63yMKrjl2lvwWGYS5gAGNax9PKAa6Mo6pjgCccuRDJFPVg-ymU2DlPKnBRM473w8K_pOBycJQ-AJ1u605tValnbk8QTSmWNbAQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:59 GMT',
+ 'Content-Length',
+ '980'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration')
+ .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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',
+ '06d95b41-9b34-4c31-8318-ef9959d62300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AiTeRwPg0fdCoY5mntRuZVw; expires=Fri, 26-Nov-2021 02:04:00 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6tcaxYUZ4NWD_fyJfFoODRK3xClGknmRCR2EGeIoixbgfyXcR-5n_YG1U2nrInoMp91mSiiYpu2hx3Ka91m-Zno1u1WghDIY5V1QHOM2g_lfs_m3CoQs67Kvh9Q2ZWjj8uNcsLMOuBqVuXIByxhgOhR_vvlXtAWVRURhsihnKYAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:59 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=32545816-d3e2-4a82-9594-7b144b36c624&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',
+ '2e8633a5-c0fd-4bc7-80d5-d332743e2900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR1 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=AmUUe2vpsQhNu7GbPe1JRzUWPr5BAQAAAJCqCtkOAAAA; expires=Fri, 26-Nov-2021 02:04:00 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:59 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx/apps/myappxxx')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147abba5ae5755be4cd478fe8aff5a42ca61f3d3acfca261fe1cbcba229aa65b1bc78dd666dfed1a38f5eafa7d33c9fe5b38f461f9dffa2d9923e5a5c37797d594cf377efde8db31faceb7c514ceb4a3f6cc645456de76dbb6abe5c96d716fab4ce09e4ec4db100dcbd9dbdddeddd9dedbd076f76f61eeddc7b74ffe14fd16b6dbe585575565f3f2d9ab740b1297e909f2d3f7ff2d1a3fba38f16d57ad9beccda3901b8db2e561ffd12423aaf9ba269f365db7f65a7f38a6b8b37f3653629f3d3e5ec4d857f9ebf5654e9abf67a0524bfe07155e7edf878b57a5966ed79552feebe5ed544a0bbd96ad510c6c58cc0152d8d73b92ecbd1476535cd5aa221bd9e674dbb9636f4d7dd663d69a675b1c2b7cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f26ec9bf62ecfd48c467377238afe4c31bef409fda0bf08a965c613613ff925","ff0f270aac231e020000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cb62f182-029b-4b71-bae0-586e39ef880c',
+ 'x-ms-ratelimit-remaining-subscription-resource-requests',
+ '11996',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dbac0dd3-6376-4b12-8bbe-2490072a5023',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cb62f182-029b-4b71-bae0-586e39ef880c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020401Z:cb62f182-029b-4b71-bae0-586e39ef880c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:00 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_list_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_list_test.js
new file mode 100644
index 000000000000..f0bfa30af93a
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_apps_list_test.js
@@ -0,0 +1,153 @@
+let nock = require('nock');
+
+module.exports.hash = "f8d249d490a5433bffcb49e95366dda7";
+
+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',
+ '61c00cc1-0521-455b-8e3d-bc160ca62300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR1 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AhkIIXlxjaZMh1sq-Mwlvr0; expires=Fri, 26-Nov-2021 02:04:01 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSQEUyJXuuCQ1yt8svUmQuQu0Qd4WySLk6oJo2DMiBYCzdiJq62B5ywA4ghoPAvQ6sJwfFo-l7_DnxDy5pV1EBBQH2J-OSzrfRGsull69zr1qHCim0Fa2LPI_ae28Jon5Ig70gE5GzhHiJOLXgNpZ5tP7hF1fk-Pf-uIzyXuTrG0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:00 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',
+ 'e7e3df85-db65-4e20-b515-394cb16b0900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AoSFzoXkCORAnPBC7TkuTNY; expires=Fri, 26-Nov-2021 02:04:01 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrtWRMp2v0efQ8YcRa5otSdLJahk8vTv9HCctVPoXjAAl6pNifV1hKrx1zgWhMVfmAvdTocj1D4dyZxDzFTtYbe24X2Rap4SAymHDDYjUTuu1sfcAIvNAR8d30A8CxGB59CVhaQn-CnV9LpReeZD4jEvubzpXsgVs6Ek6TD2GeZQYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:00 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a5c46667-4529-4e0b-8b30-b1e22ce24177&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',
+ '06d95b41-9b34-4c31-8318-ef9966d62300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=Ai8AZEAMcTNJlwTo0sJk-kMWPr5BAQAAAJGqCtkOAAAA; expires=Fri, 26-Nov-2021 02:04:01 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:01 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx/apps')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1aaae5679dd1679f3d123fa6b3d298be9478fceb3b2c947f8f2b2688a6a592c2f5eb7594baf7cf47a3d9de6f92c9f7d34fae8fc17cd96f4d1e2bac9ebcb629abf7bf76e9cfd605de78b625a57fa61332e2a6a3b6fdb55f3e5b2bcb6d0a7754e20676f8a05e0eeedeced6eefee6cef3d78b3b3f768e7dea3fb0f7f8a5e6bf3c5aaaab3fafa69d1bc058a4df183fc6cf9f9938f1edd1f7db4a8d6cbf665d6ce09c0dd76b1fae89710d279dd144d9b2fdbfe2b3b9d575c5bbc992fb349999f2e676f2afcf3fcb5a24a5fb5d72b20f9058fab3a6fc7c7abd5cb326bcfab7a71f7f5aa2602ddcd56ab86302e6604ae68699ccb75598e3e2aab69d6120de9f53c6bdab5b4a1bfee36eb4933ad8b15be6dee3edc3b7f787f7670be7d6ffae983edfdddbdfded87bbd307db07d3f39d07d3d9e47c6f7ff76e9d37d5ba9ee69fd7d57ad5dc5d5cff3461dfb47779a666349abb1b51f4678af1a54fe807fd45482d339e08fbc92ff9fe2f","f97f003ade40cd2a020000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7f8adf76-8c50-4117-b80d-5fbc9a2bfa97',
+ 'x-ms-ratelimit-remaining-subscription-resource-requests',
+ '11995',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ee08e927-564c-41a7-bd6b-9ebc09f0ee0a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7f8adf76-8c50-4117-b80d-5fbc9a2bfa97',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020402Z:7f8adf76-8c50-4117-b80d-5fbc9a2bfa97',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:01 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_create_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_create_test.js
new file mode 100644
index 000000000000..c549a82c3dc3
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_create_test.js
@@ -0,0 +1,25803 @@
+let nock = require('nock');
+
+module.exports.hash = "8abe64daf0e855ec94aedde70920cca1";
+
+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',
+ '15501e66-7785-4747-af34-81ce7c382500',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AvJqYSrGxyNBusOP9giU_Oo; expires=Fri, 26-Nov-2021 02:00:14 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmDu9UCv93UF9OvgCWwJXMXY40u1raIaSodtHk9_LXeG-epxDDGt60yALBDONWZ7P9SCii5In7QrzwWyedGo09eZFxxtfaLbuAvtjTLeSZBGMsA_mmLQdyWgDtVZlyFZ4hF2tqaIveAP3-W_geq9UYKylxKPOZlajC_n3bqXqdvogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:14 GMT',
+ 'Content-Length',
+ '980'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration')
+ .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [
+ 'Cache-Control',
+ 'max-age=86400, private',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'Access-Control-Allow-Origin',
+ '*',
+ 'Access-Control-Allow-Methods',
+ 'GET, OPTIONS',
+ 'P3P',
+ 'CP="DSP CUR OTPi IND OTRi ONL FIN"',
+ 'x-ms-request-id',
+ '77f5b566-e3e0-4a8c-bf35-9a77c5ba2200',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AsJja_D_l_NHpTNn2-0ZVbo; expires=Fri, 26-Nov-2021 02:00:15 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6cK5Ga2vpKlvBiKXSxq4cECdg_-zR8mGsRHE_fMbaoCZ5UIkynlcFmbkJCBZCc6VWIlkIP3UpnKaF-qdQHdszDhG6DZrSV_MO0quKaAU3L0liva413hHhY4nQ5ppHZgGLl0PjQfCUK0ZojVM3A13Kdr4JljOgyG7slt84M5WItEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:14 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5180bfc7-7ce1-489d-9dc7-3cc98be19928&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',
+ '15501e66-7785-4747-af34-81ce82382500',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=Asn9wnM0XJBArWOL1S1ZOV0WPr5BAQAAAK6pCtkOAAAA; expires=Fri, 26-Nov-2021 02:00:15 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:14 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx', {"location":"eastus","tags":{"key1":"value1"},"sku":{"name":"S0","tier":"Standard"}})
+ .query(true)
+ .reply(201, {"properties":{"provisioningState":"Creating","version":3,"serviceId":"5192cd2c7fe946e195994e513a8cd4ac"},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx","name":"myservicexxx"}, [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Content-Length',
+ '384',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Expires',
+ '-1',
+ 'Location',
+ 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationResults/4ee01959-9477-4f52-b3b2-00edda5cac59/Spring/myservicexxx?api-version=2021-09-01-preview',
+ 'x-ms-ratelimit-remaining-subscription-resource-requests',
+ '1198',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fbf3edb2-482a-45a1-81ec-7ad252fae7f0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Azure-AsyncOperation',
+ 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59?api-version=2021-09-01-preview',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-request-id',
+ '8888b91e-d856-4965-bcb0-2882d7ed73ca',
+ 'x-ms-correlation-request-id',
+ '8888b91e-d856-4965-bcb0-2882d7ed73ca',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020022Z:8888b91e-d856-4965-bcb0-2882d7ed73ca',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b32c6dcf-91cb-4fae-b176-0bbf46dde0a9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11464',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2811d225-4f33-4501-a44e-59c9287a38af',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b32c6dcf-91cb-4fae-b176-0bbf46dde0a9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020026Z:b32c6dcf-91cb-4fae-b176-0bbf46dde0a9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e9e69e95-b4e5-42ce-a4b4-2726900bddbb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11463',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6c4a4e93-bbf2-41ef-88ff-f1090da64dcd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e9e69e95-b4e5-42ce-a4b4-2726900bddbb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020026Z:e9e69e95-b4e5-42ce-a4b4-2726900bddbb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2c81559f-3daf-43ad-ad58-21e7377a9693',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11462',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '65c93083-f992-4317-ba34-a6b02e61b1ea',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2c81559f-3daf-43ad-ad58-21e7377a9693',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020026Z:2c81559f-3daf-43ad-ad58-21e7377a9693',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bff5a3fe-7a62-417c-bd9e-ebbd3afdf3e1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11461',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '84d81e77-4fd9-4ef4-8356-9b39b6164a20',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bff5a3fe-7a62-417c-bd9e-ebbd3afdf3e1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020027Z:bff5a3fe-7a62-417c-bd9e-ebbd3afdf3e1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a412d568-f272-4f58-8886-e8a70395dd51',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11460',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8131db67-1fd7-4d05-aadd-78c1cfcc2e3c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a412d568-f272-4f58-8886-e8a70395dd51',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020027Z:a412d568-f272-4f58-8886-e8a70395dd51',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '51bfa2e4-3c5f-4b68-b261-4416b3dcb00e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11459',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2c5df706-3934-4b3e-bd5d-39e89fcbd253',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '51bfa2e4-3c5f-4b68-b261-4416b3dcb00e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020027Z:51bfa2e4-3c5f-4b68-b261-4416b3dcb00e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd22ef23c-6c0a-441e-934b-8fae8e916f7a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11458',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '978d4e58-23bc-4491-80a1-409068b2a87f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd22ef23c-6c0a-441e-934b-8fae8e916f7a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020028Z:d22ef23c-6c0a-441e-934b-8fae8e916f7a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7d22bf6c-44d7-4c0f-86e2-55ec510fc5fc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11457',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c84cbe3c-33a8-4e96-8e4b-45cbb975af59',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7d22bf6c-44d7-4c0f-86e2-55ec510fc5fc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020028Z:7d22bf6c-44d7-4c0f-86e2-55ec510fc5fc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7ac66191-6a89-4448-a511-1c6b13996126',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11456',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5633abef-b286-4724-b762-226ab201fbd5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7ac66191-6a89-4448-a511-1c6b13996126',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020028Z:7ac66191-6a89-4448-a511-1c6b13996126',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '83a6a13e-8789-4fb9-999a-b08f9fbd2cbe',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11455',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dce826d2-e85e-4028-9961-ea090ef0930c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '83a6a13e-8789-4fb9-999a-b08f9fbd2cbe',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020029Z:83a6a13e-8789-4fb9-999a-b08f9fbd2cbe',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c4dd169a-f53a-4e54-9ad2-c79df35f2ccd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11454',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4be4b94b-202d-41dd-a8aa-402b43aa9c6d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c4dd169a-f53a-4e54-9ad2-c79df35f2ccd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020029Z:c4dd169a-f53a-4e54-9ad2-c79df35f2ccd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '654f8c9b-d1d6-4f7c-946d-f230ac10d857',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11453',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd25ab8e1-186d-41b8-9bda-d6c2829177d8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '654f8c9b-d1d6-4f7c-946d-f230ac10d857',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020029Z:654f8c9b-d1d6-4f7c-946d-f230ac10d857',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e9c2435e-bab1-47d5-8b71-c6edc7a1fd84',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11452',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f6bd8b98-4b0f-4940-bb14-95b4b0fcfd43',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e9c2435e-bab1-47d5-8b71-c6edc7a1fd84',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020030Z:e9c2435e-bab1-47d5-8b71-c6edc7a1fd84',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '22e688b2-1509-4482-8799-a6cf77b680c6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11451',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0bd18ec4-12c7-4fe6-b9cb-20606ff75d7c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '22e688b2-1509-4482-8799-a6cf77b680c6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020030Z:22e688b2-1509-4482-8799-a6cf77b680c6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1a4bfa2e-5331-43d8-a2ec-5d2fa08eb05b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11450',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '69aa6afa-2e7d-4696-a081-4c2f5ceab106',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1a4bfa2e-5331-43d8-a2ec-5d2fa08eb05b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020030Z:1a4bfa2e-5331-43d8-a2ec-5d2fa08eb05b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3ff61fa6-6dfd-4e0c-8fc8-6465f64188ec',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11449',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f27286ea-ef00-4ae3-b76d-562eac270801',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3ff61fa6-6dfd-4e0c-8fc8-6465f64188ec',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020031Z:3ff61fa6-6dfd-4e0c-8fc8-6465f64188ec',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e6e87f64-2914-4aba-a1f8-9ad6d4e77a62',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11448',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fcb0d726-8cdf-498e-861b-64345ce42811',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e6e87f64-2914-4aba-a1f8-9ad6d4e77a62',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020031Z:e6e87f64-2914-4aba-a1f8-9ad6d4e77a62',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '20665391-c12e-47a3-89aa-638db03f9718',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11447',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9ee84134-2182-4320-adec-3562f79d4546',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '20665391-c12e-47a3-89aa-638db03f9718',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020031Z:20665391-c12e-47a3-89aa-638db03f9718',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '76e414eb-9e92-4c83-873e-3e4561491a23',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11446',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '04352635-a5e9-4155-a234-d69f2504dbe2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '76e414eb-9e92-4c83-873e-3e4561491a23',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020032Z:76e414eb-9e92-4c83-873e-3e4561491a23',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1628f177-f46a-447a-ad41-5865647d9651',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11445',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ca38a042-c5c2-4907-a884-f84e105a1191',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1628f177-f46a-447a-ad41-5865647d9651',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020032Z:1628f177-f46a-447a-ad41-5865647d9651',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ec0e080c-bbbe-4083-9eab-15a27e68f1a5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11444',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '51b78889-21cf-4651-8d3f-ad4a8f7badf6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ec0e080c-bbbe-4083-9eab-15a27e68f1a5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020033Z:ec0e080c-bbbe-4083-9eab-15a27e68f1a5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b07382cc-7b10-4c36-85a8-e0700f26e626',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11443',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b4ea9f43-fca3-4820-9920-77e5958cd871',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b07382cc-7b10-4c36-85a8-e0700f26e626',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020033Z:b07382cc-7b10-4c36-85a8-e0700f26e626',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b9e011b3-e21f-43b0-b4ce-13592bc48eae',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11442',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a52723db-5f39-42e5-986a-4bd688758722',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b9e011b3-e21f-43b0-b4ce-13592bc48eae',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020033Z:b9e011b3-e21f-43b0-b4ce-13592bc48eae',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eb3d35c3-20fc-46f9-9a6f-f5e954c57aa5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11441',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8eb50701-2465-4cf5-87d6-ccb65597a45e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eb3d35c3-20fc-46f9-9a6f-f5e954c57aa5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020034Z:eb3d35c3-20fc-46f9-9a6f-f5e954c57aa5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '042f385b-547b-4914-8055-715332530b83',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11440',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7945e194-f8fd-48d2-87d2-c3034c9526fd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '042f385b-547b-4914-8055-715332530b83',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020034Z:042f385b-547b-4914-8055-715332530b83',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b3406682-6a78-4be0-960a-bd1a9a39616e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11439',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dc07006e-3c66-424e-9c42-5c6f18882cdf',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b3406682-6a78-4be0-960a-bd1a9a39616e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020034Z:b3406682-6a78-4be0-960a-bd1a9a39616e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7405f536-03ff-4d65-985e-4c785014a5f2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11438',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c18f6474-dda5-4b29-93e5-16482c32ea90',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7405f536-03ff-4d65-985e-4c785014a5f2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020035Z:7405f536-03ff-4d65-985e-4c785014a5f2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '734be65a-949d-4d48-a4e7-c1c914881c68',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11437',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '89439283-9e07-4f5b-8e8e-9d5c922a67b5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '734be65a-949d-4d48-a4e7-c1c914881c68',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020035Z:734be65a-949d-4d48-a4e7-c1c914881c68',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0728e4c3-64d9-44df-bf44-8ad8fdf643df',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11436',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f6127d40-701f-48ff-a3c6-d9f7e61e42c6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0728e4c3-64d9-44df-bf44-8ad8fdf643df',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020035Z:0728e4c3-64d9-44df-bf44-8ad8fdf643df',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cc83e3dc-dfed-409f-8b4a-2aa9e5ad7809',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11435',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'faf67f0f-63da-43be-9b3f-a5f6a247e201',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cc83e3dc-dfed-409f-8b4a-2aa9e5ad7809',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020036Z:cc83e3dc-dfed-409f-8b4a-2aa9e5ad7809',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7a2485c5-66fd-47b3-a0e6-5465763ebaef',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11434',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '159e1426-0b34-4469-870f-0f9d07b0dd64',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7a2485c5-66fd-47b3-a0e6-5465763ebaef',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020036Z:7a2485c5-66fd-47b3-a0e6-5465763ebaef',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd33c5698-40d6-4cfa-9e38-b9b922c38a4b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11433',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd21bc9d6-fc3c-4c3e-80fd-816c4cc5344e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd33c5698-40d6-4cfa-9e38-b9b922c38a4b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020036Z:d33c5698-40d6-4cfa-9e38-b9b922c38a4b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dc7d7882-9846-444b-be26-ab30d27d4efb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11432',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '946031e1-aec9-48d2-aaf6-cbdd027d779c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dc7d7882-9846-444b-be26-ab30d27d4efb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020037Z:dc7d7882-9846-444b-be26-ab30d27d4efb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eb2cc043-a021-429d-8a24-d5b85d24e539',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11431',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7785f612-371f-49f3-ad1e-7c43421b8542',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eb2cc043-a021-429d-8a24-d5b85d24e539',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020037Z:eb2cc043-a021-429d-8a24-d5b85d24e539',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4e6dcb09-db07-4577-8ce1-eb7b095b7c66',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11430',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '303be45a-9f8d-4e7b-b7c8-f4fd053e7d8e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4e6dcb09-db07-4577-8ce1-eb7b095b7c66',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020037Z:4e6dcb09-db07-4577-8ce1-eb7b095b7c66',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '31530f30-7e75-41f6-b9d5-95616007938b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11429',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2a0526e6-4e54-4506-9254-ddc0014a5bcc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '31530f30-7e75-41f6-b9d5-95616007938b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020038Z:31530f30-7e75-41f6-b9d5-95616007938b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5b3caa5e-cdb2-4f61-a7fe-e0e909a6e8a1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11428',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '548c9c40-527c-495d-afde-30a5d665b960',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5b3caa5e-cdb2-4f61-a7fe-e0e909a6e8a1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020038Z:5b3caa5e-cdb2-4f61-a7fe-e0e909a6e8a1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '694b6bcc-99a5-42c7-a116-cd6dd86b88f8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11427',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '85e9759b-0188-4cbd-839e-7ac64a90f79b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '694b6bcc-99a5-42c7-a116-cd6dd86b88f8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020038Z:694b6bcc-99a5-42c7-a116-cd6dd86b88f8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '639e710a-b943-4bf6-be51-b6e218e3d154',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11426',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9f1ef517-6957-4b6b-bc1b-36463ed499c8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '639e710a-b943-4bf6-be51-b6e218e3d154',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020039Z:639e710a-b943-4bf6-be51-b6e218e3d154',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e6d74e97-a035-498e-b2f2-0b501c99fb49',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11425',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5cd3bdbe-bfa4-431b-9ba6-8d76908cd8cd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e6d74e97-a035-498e-b2f2-0b501c99fb49',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020039Z:e6d74e97-a035-498e-b2f2-0b501c99fb49',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9e90753a-e8b3-41d0-aa19-8ae00adb8e46',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11424',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '76e77c22-0690-4233-ab8d-a5b55f26d222',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9e90753a-e8b3-41d0-aa19-8ae00adb8e46',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020039Z:9e90753a-e8b3-41d0-aa19-8ae00adb8e46',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f8b834c6-e165-4c9d-a5d3-b38a1d0eacb9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11423',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '614086ed-8302-4dfb-a7c8-1169f526fbfc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f8b834c6-e165-4c9d-a5d3-b38a1d0eacb9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020040Z:f8b834c6-e165-4c9d-a5d3-b38a1d0eacb9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '943e7843-4d64-4855-98c5-4de24db03f5c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11422',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '41dd867c-4a26-4e86-915a-c51f2d139b5d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '943e7843-4d64-4855-98c5-4de24db03f5c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020040Z:943e7843-4d64-4855-98c5-4de24db03f5c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '20825567-4914-4843-96d4-50f3a92cf548',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11421',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '83575af0-e2ec-4353-a79b-780964f0a6a1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '20825567-4914-4843-96d4-50f3a92cf548',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020040Z:20825567-4914-4843-96d4-50f3a92cf548',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b955fbc2-87cd-494f-aa1f-2e566aed50bc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11420',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e766bb59-ad98-45d8-ada5-1b7dbc6cf630',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b955fbc2-87cd-494f-aa1f-2e566aed50bc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020041Z:b955fbc2-87cd-494f-aa1f-2e566aed50bc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9319f8c7-3465-4074-a5ea-ebd294382eba',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11419',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '95fc2b9e-3ff8-4c32-9997-d45c987ede10',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9319f8c7-3465-4074-a5ea-ebd294382eba',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020041Z:9319f8c7-3465-4074-a5ea-ebd294382eba',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8df89c1c-8084-415c-b747-b22bbc664652',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11418',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '569ca848-6afd-4dfc-b597-dd60b333b699',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8df89c1c-8084-415c-b747-b22bbc664652',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020041Z:8df89c1c-8084-415c-b747-b22bbc664652',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a7b6f7ca-eb5a-4391-8fe3-42617903d711',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11417',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4f646128-bb61-406d-b2b4-f593e5ece903',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a7b6f7ca-eb5a-4391-8fe3-42617903d711',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020042Z:a7b6f7ca-eb5a-4391-8fe3-42617903d711',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f2ef569b-fdea-4c2d-a99a-001e98e3f258',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11416',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a6e3aeda-2744-4c31-82d1-47aefd29b532',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f2ef569b-fdea-4c2d-a99a-001e98e3f258',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020042Z:f2ef569b-fdea-4c2d-a99a-001e98e3f258',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd775695a-a235-4165-bc46-47a643f9ab94',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11415',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cb25788d-11d3-4c0d-83e9-4dd383e4fbb9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd775695a-a235-4165-bc46-47a643f9ab94',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020042Z:d775695a-a235-4165-bc46-47a643f9ab94',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '14264662-d505-4ede-aa63-c850531ad38e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11414',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a4317921-3281-48af-afe5-0a12f47f3955',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '14264662-d505-4ede-aa63-c850531ad38e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020043Z:14264662-d505-4ede-aa63-c850531ad38e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b442cc25-c75b-48d0-abb4-6171742a6c3f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11413',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a577a3f8-6bd8-4bc7-98d3-9fbcd4714456',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b442cc25-c75b-48d0-abb4-6171742a6c3f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020043Z:b442cc25-c75b-48d0-abb4-6171742a6c3f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3dcc455f-245e-483d-a691-e242c93af357',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11412',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8984c82d-732f-4d7e-9eec-2e7b0afe7083',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3dcc455f-245e-483d-a691-e242c93af357',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020043Z:3dcc455f-245e-483d-a691-e242c93af357',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6c982c4b-cb10-4461-b891-67b8c984aa90',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11411',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a5bc2f0b-72fd-46ee-923d-f3a68d59b121',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6c982c4b-cb10-4461-b891-67b8c984aa90',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020044Z:6c982c4b-cb10-4461-b891-67b8c984aa90',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c38112c6-5bdc-4d7b-a8c4-592206217d61',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11410',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7d72f6c0-9aa7-43c4-ae92-f646c8a53acd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c38112c6-5bdc-4d7b-a8c4-592206217d61',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020044Z:c38112c6-5bdc-4d7b-a8c4-592206217d61',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0d690c85-e52a-4bc6-af9f-4f2675d6b4e8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11409',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '81240102-151f-452f-bb4d-02cc6136d7fb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0d690c85-e52a-4bc6-af9f-4f2675d6b4e8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020044Z:0d690c85-e52a-4bc6-af9f-4f2675d6b4e8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b317640d-9451-44b8-9a17-5ee514682e81',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11408',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'eab7e166-6589-4945-85b5-5db47785a221',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b317640d-9451-44b8-9a17-5ee514682e81',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020045Z:b317640d-9451-44b8-9a17-5ee514682e81',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bb9dbaf6-3bdb-4204-967a-75fe9ca4c0a9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11407',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '56628930-0891-495b-9009-ec32346bb594',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bb9dbaf6-3bdb-4204-967a-75fe9ca4c0a9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020045Z:bb9dbaf6-3bdb-4204-967a-75fe9ca4c0a9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a65eabc4-bda3-4c17-8908-bb95fc7e2276',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11406',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '140cb94c-e999-4c8c-a195-be49038e405d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a65eabc4-bda3-4c17-8908-bb95fc7e2276',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020045Z:a65eabc4-bda3-4c17-8908-bb95fc7e2276',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '990b6c46-6503-4b9b-a932-2c62e917113d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11405',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b5d2ef1f-763b-49e5-b1da-d16aecad177d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '990b6c46-6503-4b9b-a932-2c62e917113d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020046Z:990b6c46-6503-4b9b-a932-2c62e917113d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '68f974c5-4ad3-4600-a4a9-5719d2ebf425',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11404',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '35c4b45f-769f-4e6b-b1a5-059e4d6beb78',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '68f974c5-4ad3-4600-a4a9-5719d2ebf425',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020046Z:68f974c5-4ad3-4600-a4a9-5719d2ebf425',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b3a8b938-b715-49b3-b2ea-40727d50370d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11403',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2a5b08e3-80bc-4767-9523-cedbffbccb6d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b3a8b938-b715-49b3-b2ea-40727d50370d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020046Z:b3a8b938-b715-49b3-b2ea-40727d50370d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a6ea2bfd-633f-4e96-be5a-2daee0b5ec45',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11402',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ea2acf67-ae92-4e4f-97c3-15d6e276b927',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a6ea2bfd-633f-4e96-be5a-2daee0b5ec45',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020047Z:a6ea2bfd-633f-4e96-be5a-2daee0b5ec45',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'be16235c-18db-4cbd-ba5a-52711aa42f63',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11401',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5c1f5cad-3f07-4421-8fb0-f636f8975818',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'be16235c-18db-4cbd-ba5a-52711aa42f63',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020047Z:be16235c-18db-4cbd-ba5a-52711aa42f63',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '062a4100-a078-4e81-b52a-20fdc78adf5e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11400',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '32c2dc17-e852-4288-bab1-962dba995ac8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '062a4100-a078-4e81-b52a-20fdc78adf5e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020047Z:062a4100-a078-4e81-b52a-20fdc78adf5e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f95080a7-e4fb-411c-b0e7-09ac563008b5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11399',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6b0688bb-1353-4384-b7d1-a31839d57ed3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f95080a7-e4fb-411c-b0e7-09ac563008b5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020048Z:f95080a7-e4fb-411c-b0e7-09ac563008b5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'be495370-b29e-47fe-9fe4-51d02d6449f9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11398',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '86ac6734-0d44-4bc2-be9d-4b106e4b0ca5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'be495370-b29e-47fe-9fe4-51d02d6449f9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020048Z:be495370-b29e-47fe-9fe4-51d02d6449f9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7bebb300-2c04-4a61-8cde-631d7fb5dd96',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11397',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '447258a9-64fc-4af9-9ffc-78b4b93c027d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7bebb300-2c04-4a61-8cde-631d7fb5dd96',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020048Z:7bebb300-2c04-4a61-8cde-631d7fb5dd96',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '852baeeb-360c-437e-be43-d86a5bf0454d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11396',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3e3c2f27-e252-4d18-944f-ea3fb50eac5c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '852baeeb-360c-437e-be43-d86a5bf0454d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020049Z:852baeeb-360c-437e-be43-d86a5bf0454d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9f0cba9f-5775-4692-bb32-07b1025873ce',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11395',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f3c11114-d6f9-4d07-a831-5652db711365',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9f0cba9f-5775-4692-bb32-07b1025873ce',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020049Z:9f0cba9f-5775-4692-bb32-07b1025873ce',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9f51bb6f-d34f-4d08-b935-44a71ff134a6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11394',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b2c1ef98-85fa-47c2-baf0-6f8c567e7bef',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9f51bb6f-d34f-4d08-b935-44a71ff134a6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020049Z:9f51bb6f-d34f-4d08-b935-44a71ff134a6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0465a75e-a83a-462f-8ddb-ae63cdaa668e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11393',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6b7f75c1-c4d2-4dca-8f0b-48efdad22a5b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0465a75e-a83a-462f-8ddb-ae63cdaa668e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020050Z:0465a75e-a83a-462f-8ddb-ae63cdaa668e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ffcfc752-3dfd-4d4d-85d9-3855500dfda3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11392',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5eed1b1b-e96d-4379-a626-6f1223f1e02b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ffcfc752-3dfd-4d4d-85d9-3855500dfda3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020050Z:ffcfc752-3dfd-4d4d-85d9-3855500dfda3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c069d47f-1238-4fc0-b4f6-6aee96a80e27',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11391',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9bac3ea1-2b56-4c6a-8397-43f2f41959d1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c069d47f-1238-4fc0-b4f6-6aee96a80e27',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020051Z:c069d47f-1238-4fc0-b4f6-6aee96a80e27',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4a1d71e5-9d8c-4267-869b-12444adaf5ae',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11390',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6e3830ec-1de2-42f7-a89f-b19ae093fbd5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4a1d71e5-9d8c-4267-869b-12444adaf5ae',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020051Z:4a1d71e5-9d8c-4267-869b-12444adaf5ae',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f832e4c4-5ef4-45a4-be37-e2da5844b8d0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11389',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '651448c8-3269-42cc-a9a2-277b203f934d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f832e4c4-5ef4-45a4-be37-e2da5844b8d0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020051Z:f832e4c4-5ef4-45a4-be37-e2da5844b8d0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7476170b-16d1-4741-9702-150831311f2a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11388',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0201ef57-dde2-4593-961f-ccaa1719a0af',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7476170b-16d1-4741-9702-150831311f2a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020052Z:7476170b-16d1-4741-9702-150831311f2a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6e25de1d-4e1c-4b8d-b096-e083ee897515',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11387',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '610298e3-0590-4dbe-aae2-38c8f0cef9b9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6e25de1d-4e1c-4b8d-b096-e083ee897515',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020052Z:6e25de1d-4e1c-4b8d-b096-e083ee897515',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dff399de-4744-4e03-a909-959fab9d0b99',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11386',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '262d577c-cce8-46bb-ae68-748627fc6050',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dff399de-4744-4e03-a909-959fab9d0b99',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020053Z:dff399de-4744-4e03-a909-959fab9d0b99',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cba01b4a-555f-472c-a069-c1d35a9938df',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11385',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b2c8c407-076b-43ba-8b2d-e6f14e19927a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cba01b4a-555f-472c-a069-c1d35a9938df',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020053Z:cba01b4a-555f-472c-a069-c1d35a9938df',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c4c858c8-76d0-4ec2-a68b-11368d95a200',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11384',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '90063612-7281-4555-8e1e-b0f4808ce1e4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c4c858c8-76d0-4ec2-a68b-11368d95a200',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020053Z:c4c858c8-76d0-4ec2-a68b-11368d95a200',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '405e93b5-1582-4357-8394-29fac3c91285',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11383',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5b166a30-ba86-4c52-99c0-7a2ee61dfc60',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '405e93b5-1582-4357-8394-29fac3c91285',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020054Z:405e93b5-1582-4357-8394-29fac3c91285',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7f186f6d-180f-443e-8772-08829f22cc4a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11382',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2eb9b4bb-3c5d-46b6-b42f-308926e501ce',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7f186f6d-180f-443e-8772-08829f22cc4a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020054Z:7f186f6d-180f-443e-8772-08829f22cc4a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '683fd5ee-2b4a-43ed-9341-b47981cb161c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11381',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd7391ed8-959c-44ff-acee-c2fcb23d6e00',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '683fd5ee-2b4a-43ed-9341-b47981cb161c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020054Z:683fd5ee-2b4a-43ed-9341-b47981cb161c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ecf7e10e-6c25-497d-b352-fb51de5055e5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11380',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd64fe73b-ce43-4147-8ebc-0fe66d943e4a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ecf7e10e-6c25-497d-b352-fb51de5055e5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020055Z:ecf7e10e-6c25-497d-b352-fb51de5055e5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1eda13c0-1840-4a37-9b6b-f425e9f03348',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11379',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'acab60e4-4581-4786-b675-ad0dc9846d24',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1eda13c0-1840-4a37-9b6b-f425e9f03348',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020055Z:1eda13c0-1840-4a37-9b6b-f425e9f03348',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd166172b-23e6-40b7-bfb5-f091e13be084',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11378',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c3d8d6e9-746b-4871-96cc-8e6b2992cbfb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd166172b-23e6-40b7-bfb5-f091e13be084',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020055Z:d166172b-23e6-40b7-bfb5-f091e13be084',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c1d98326-77ea-444a-9661-f8548b01ca97',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11377',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '54374f67-4c6c-46cf-a412-3c776efe78e3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c1d98326-77ea-444a-9661-f8548b01ca97',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020056Z:c1d98326-77ea-444a-9661-f8548b01ca97',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0be6f9aa-a1b3-4ffa-a853-655e89aa6db2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11376',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5ddb85c6-d998-4cc0-a83c-a03250d3005f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0be6f9aa-a1b3-4ffa-a853-655e89aa6db2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020056Z:0be6f9aa-a1b3-4ffa-a853-655e89aa6db2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '779ce877-e87d-4d1c-9404-ae34741a2e3c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11375',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1b30dcb0-2ada-4d44-bbba-895438b64823',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '779ce877-e87d-4d1c-9404-ae34741a2e3c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020057Z:779ce877-e87d-4d1c-9404-ae34741a2e3c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd931c05c-30cd-42ac-958f-d922184669c9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11374',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '83a1f4f0-d455-43b4-b37c-e8f35f02b29f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd931c05c-30cd-42ac-958f-d922184669c9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020057Z:d931c05c-30cd-42ac-958f-d922184669c9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c2050014-8099-4596-93f1-d86ab6c394d0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11373',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5f71e696-da9f-4914-be62-0c0aaedb13be',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c2050014-8099-4596-93f1-d86ab6c394d0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020057Z:c2050014-8099-4596-93f1-d86ab6c394d0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e67593cc-7ce9-4da8-8fbb-92188d1e83be',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11372',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a37f1f11-8d5d-41dd-940f-bcd3cdf93807',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e67593cc-7ce9-4da8-8fbb-92188d1e83be',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020058Z:e67593cc-7ce9-4da8-8fbb-92188d1e83be',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '017871d1-4615-4fb0-a9ce-270086994516',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11371',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0654e13f-e897-4b79-a4e2-c71840fffc8b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '017871d1-4615-4fb0-a9ce-270086994516',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020058Z:017871d1-4615-4fb0-a9ce-270086994516',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2781d7d1-39f7-483c-8ff0-a22d9c67b077',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11370',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0c0a5805-142f-4730-b41f-27b6fd641e85',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2781d7d1-39f7-483c-8ff0-a22d9c67b077',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020058Z:2781d7d1-39f7-483c-8ff0-a22d9c67b077',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c2f33878-0dec-459c-a4ad-7c38f7eb0d9b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11369',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a934c4bd-5195-4eb7-922c-3e54487d3904',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c2f33878-0dec-459c-a4ad-7c38f7eb0d9b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020059Z:c2f33878-0dec-459c-a4ad-7c38f7eb0d9b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b38877b0-0b91-4f22-adf8-dabe2698e0dd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11368',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e7050206-5a1e-468c-96f4-8c268d6855a4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b38877b0-0b91-4f22-adf8-dabe2698e0dd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020059Z:b38877b0-0b91-4f22-adf8-dabe2698e0dd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '895295e8-6550-49ab-ba10-31911ca4a313',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11367',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ebb1a437-331a-411f-8b23-f87c6415f297',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '895295e8-6550-49ab-ba10-31911ca4a313',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020059Z:895295e8-6550-49ab-ba10-31911ca4a313',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '43a594b7-5b84-41ad-85fd-98099526f589',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11366',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2788f8a7-7ec3-4597-aa1b-19413872b3c2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '43a594b7-5b84-41ad-85fd-98099526f589',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020100Z:43a594b7-5b84-41ad-85fd-98099526f589',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:00:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2319e8b0-7721-4807-841c-44e2df392189',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11365',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e125a860-508a-4255-b933-2e391637444e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2319e8b0-7721-4807-841c-44e2df392189',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020100Z:2319e8b0-7721-4807-841c-44e2df392189',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a7486a3c-ab59-40df-83d2-4472420daebd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11364',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '24eec290-775a-4d5d-b167-8775d074e800',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a7486a3c-ab59-40df-83d2-4472420daebd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020101Z:a7486a3c-ab59-40df-83d2-4472420daebd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd0357e05-d418-4575-a2c2-4d71f7d267a5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11363',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '13220829-b3f4-43fd-85db-bc8b43622e99',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd0357e05-d418-4575-a2c2-4d71f7d267a5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020101Z:d0357e05-d418-4575-a2c2-4d71f7d267a5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9d0fc0f6-9952-494c-b838-42892614b721',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11362',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8c8a0adf-1e77-40f4-9995-93f96c61576a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9d0fc0f6-9952-494c-b838-42892614b721',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020101Z:9d0fc0f6-9952-494c-b838-42892614b721',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'daaa36ca-533b-412e-8175-9ec9d5a78ec0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11361',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fc425da6-207b-47e5-b3a3-96e1f057e517',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'daaa36ca-533b-412e-8175-9ec9d5a78ec0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020102Z:daaa36ca-533b-412e-8175-9ec9d5a78ec0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '299e2f35-11e8-4e79-b172-88344fb26477',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11360',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '663bb3e3-80d9-4854-beca-ba107c57ccf3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '299e2f35-11e8-4e79-b172-88344fb26477',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020102Z:299e2f35-11e8-4e79-b172-88344fb26477',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b936b743-2044-4749-9b13-7ff64d6a2993',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11359',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '55458da0-b648-4177-8c1a-c794ac70b22e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b936b743-2044-4749-9b13-7ff64d6a2993',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020102Z:b936b743-2044-4749-9b13-7ff64d6a2993',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b7c20ec8-14ac-4aac-9dd8-33c9b5ba6489',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11358',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a5821bfe-f051-4e25-af5c-0c5fdc649085',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b7c20ec8-14ac-4aac-9dd8-33c9b5ba6489',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020103Z:b7c20ec8-14ac-4aac-9dd8-33c9b5ba6489',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '68eb9c53-8a0f-4a4f-9b33-904a0739b4c3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11357',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd9281fe9-8446-4ada-b479-d2b2c4ea8bd2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '68eb9c53-8a0f-4a4f-9b33-904a0739b4c3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020103Z:68eb9c53-8a0f-4a4f-9b33-904a0739b4c3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7fa552cb-4bc5-4730-921e-49eac39d7eaf',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11356',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e7be9fbc-8903-40e3-8cda-ec16babb904b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7fa552cb-4bc5-4730-921e-49eac39d7eaf',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020103Z:7fa552cb-4bc5-4730-921e-49eac39d7eaf',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7eb2b4b6-c887-48cc-bb59-62b99913a138',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11355',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1598baf5-05d9-42b1-bc49-26900fbb141a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7eb2b4b6-c887-48cc-bb59-62b99913a138',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020104Z:7eb2b4b6-c887-48cc-bb59-62b99913a138',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3546d5f4-7c13-4f16-b2ef-d4848562412d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11354',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9c6a171a-a788-4662-8d28-1702e3e21aaa',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3546d5f4-7c13-4f16-b2ef-d4848562412d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020104Z:3546d5f4-7c13-4f16-b2ef-d4848562412d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1ee4c97f-bfb3-4848-9e43-152466b0052d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11353',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bf1842f2-5e07-4563-a139-b20fbf024b67',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1ee4c97f-bfb3-4848-9e43-152466b0052d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020104Z:1ee4c97f-bfb3-4848-9e43-152466b0052d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e437b790-cb1f-43b8-a32f-d4643a87def8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11352',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4c6bcc3e-55fe-428b-80db-4f1892afee4a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e437b790-cb1f-43b8-a32f-d4643a87def8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020105Z:e437b790-cb1f-43b8-a32f-d4643a87def8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '95acff95-ae4d-4122-987c-e1da3fdfcc51',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11351',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ea7ca394-26d4-40d6-aa6a-7ad48ecd92ee',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '95acff95-ae4d-4122-987c-e1da3fdfcc51',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020105Z:95acff95-ae4d-4122-987c-e1da3fdfcc51',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c93d5e89-9713-452f-8446-b3c7e6d9cc70',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11350',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5a16f6a1-8065-4487-8af2-2ce05fc2b0bb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c93d5e89-9713-452f-8446-b3c7e6d9cc70',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020105Z:c93d5e89-9713-452f-8446-b3c7e6d9cc70',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '76f69f64-b054-4fe7-a4ec-ce1ee98da115',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11349',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '92879a1f-5331-43bf-852d-9a3e778f758f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '76f69f64-b054-4fe7-a4ec-ce1ee98da115',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020106Z:76f69f64-b054-4fe7-a4ec-ce1ee98da115',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1784a6ec-b1d7-4957-a9d6-862fc15bee54',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11348',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c1543791-f106-4eb3-9634-0d3312744a7c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1784a6ec-b1d7-4957-a9d6-862fc15bee54',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020106Z:1784a6ec-b1d7-4957-a9d6-862fc15bee54',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '10b94e76-d09d-42f4-9e90-676ab2919196',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11347',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4c77d4ee-8382-4746-837b-0719e4cf143b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '10b94e76-d09d-42f4-9e90-676ab2919196',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020106Z:10b94e76-d09d-42f4-9e90-676ab2919196',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2c589904-193e-4542-bb40-62c127719c39',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11346',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5422b8e6-d657-45ed-936e-edaa5e0ea251',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2c589904-193e-4542-bb40-62c127719c39',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020107Z:2c589904-193e-4542-bb40-62c127719c39',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4a4a7892-1ed6-4adf-bfc9-dea3957f645f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11345',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c6577f84-18c8-40bd-8ad9-b08210b7d4c4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4a4a7892-1ed6-4adf-bfc9-dea3957f645f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020107Z:4a4a7892-1ed6-4adf-bfc9-dea3957f645f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd8a9bdc2-b09d-4ad1-aa46-b3759778e718',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11344',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9bbddfc8-8757-46b9-9442-8e07e65e71ef',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd8a9bdc2-b09d-4ad1-aa46-b3759778e718',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020107Z:d8a9bdc2-b09d-4ad1-aa46-b3759778e718',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ae50e262-aaad-46e3-a810-8cc5e3f96d7a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11343',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '057c4a9e-04fc-4d10-abe7-58460c2455e1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ae50e262-aaad-46e3-a810-8cc5e3f96d7a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020108Z:ae50e262-aaad-46e3-a810-8cc5e3f96d7a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2716c9f1-892e-435d-85ba-64fddc867a39',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11342',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2f07a128-4c05-4e0d-922e-f2473b6dae95',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2716c9f1-892e-435d-85ba-64fddc867a39',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020108Z:2716c9f1-892e-435d-85ba-64fddc867a39',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6eedd626-4b3c-4ff3-a584-03040fe9b859',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11341',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fc5cbf37-773c-4372-9854-9a3b0d4dc415',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6eedd626-4b3c-4ff3-a584-03040fe9b859',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020109Z:6eedd626-4b3c-4ff3-a584-03040fe9b859',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '36010ae8-e25f-4c43-b35c-131e95f9e0c3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11340',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '29557698-0dc9-418f-a909-06fda374cb87',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '36010ae8-e25f-4c43-b35c-131e95f9e0c3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020109Z:36010ae8-e25f-4c43-b35c-131e95f9e0c3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ccc88740-a373-41d0-800b-c4dbbecd9ef7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11339',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '06b20044-7c6d-422c-86c0-3c24a7a827dc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ccc88740-a373-41d0-800b-c4dbbecd9ef7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020109Z:ccc88740-a373-41d0-800b-c4dbbecd9ef7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6b3b410e-a07e-4d01-80d1-9f9efa8f0a5a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11338',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ea04072b-558e-461a-8dce-e922abbf5e00',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6b3b410e-a07e-4d01-80d1-9f9efa8f0a5a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020110Z:6b3b410e-a07e-4d01-80d1-9f9efa8f0a5a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '01d19d24-d1dc-4d1f-aa43-c836df07d2bf',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11337',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6ef3f168-2fa8-454f-960c-e72a44d3fa50',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '01d19d24-d1dc-4d1f-aa43-c836df07d2bf',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020110Z:01d19d24-d1dc-4d1f-aa43-c836df07d2bf',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '643b2dbf-1cba-42aa-904a-7c27dac9b0e1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11336',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8d50371f-2253-49ae-9fb4-d1c25aaed159',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '643b2dbf-1cba-42aa-904a-7c27dac9b0e1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020110Z:643b2dbf-1cba-42aa-904a-7c27dac9b0e1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '64a6417b-0b0e-4c52-b257-f2c0573271c0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11335',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '07bdc766-afd3-4207-8230-f8b6c58e9729',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '64a6417b-0b0e-4c52-b257-f2c0573271c0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020111Z:64a6417b-0b0e-4c52-b257-f2c0573271c0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3b6f9f7d-bdaa-4589-844a-79b37ee46477',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11334',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b4a3c842-1369-4c46-8c51-3fc76b1e596a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3b6f9f7d-bdaa-4589-844a-79b37ee46477',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020111Z:3b6f9f7d-bdaa-4589-844a-79b37ee46477',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e1caca95-4a39-4fd1-91bc-9efae6e07181',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11333',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '480b8066-da9f-4b50-b81f-9d78eaefd050',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e1caca95-4a39-4fd1-91bc-9efae6e07181',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020111Z:e1caca95-4a39-4fd1-91bc-9efae6e07181',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a983591e-6ae0-4640-995b-aa0dfd985e6e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11332',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f235637f-e583-4e85-ad5e-c2eb74e90506',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a983591e-6ae0-4640-995b-aa0dfd985e6e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020112Z:a983591e-6ae0-4640-995b-aa0dfd985e6e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd3062723-35f7-4842-8b90-977ff09bea00',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11331',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e70cfa71-25f3-4fa7-bada-89cf327ef528',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd3062723-35f7-4842-8b90-977ff09bea00',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020113Z:d3062723-35f7-4842-8b90-977ff09bea00',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a01dcbf4-00a1-4bd1-a871-e63c4a369f16',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11330',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bc649938-5fd9-4421-98ca-8d777c55d231',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a01dcbf4-00a1-4bd1-a871-e63c4a369f16',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020113Z:a01dcbf4-00a1-4bd1-a871-e63c4a369f16',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b1cddc4e-f867-446d-946c-ab1358677323',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11329',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cbf4080a-172d-4c14-ba63-cbcedcd11881',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b1cddc4e-f867-446d-946c-ab1358677323',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020114Z:b1cddc4e-f867-446d-946c-ab1358677323',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7ff6b2d2-a748-4837-a764-2f9f45d49282',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11328',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'efd7e57e-fe3d-4d8a-9faa-eed4caf8e8fe',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7ff6b2d2-a748-4837-a764-2f9f45d49282',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020114Z:7ff6b2d2-a748-4837-a764-2f9f45d49282',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7718b18c-8a87-4ac1-ba26-8e1ed363c58f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11327',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '653133fa-06a1-4218-be88-9e719beca38e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7718b18c-8a87-4ac1-ba26-8e1ed363c58f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020114Z:7718b18c-8a87-4ac1-ba26-8e1ed363c58f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'af34117d-e836-418c-bb22-8df2ec11940b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11326',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ff465eb7-db6a-4afe-a709-88e6d03e5483',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'af34117d-e836-418c-bb22-8df2ec11940b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020115Z:af34117d-e836-418c-bb22-8df2ec11940b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5e014359-1687-4daa-bfa1-9e7f9a45317a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11325',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4672b926-60f8-40f6-9c68-9709458e010d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5e014359-1687-4daa-bfa1-9e7f9a45317a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020115Z:5e014359-1687-4daa-bfa1-9e7f9a45317a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '963f6ccf-2d46-47a2-bfc8-4625c40edf56',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11324',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0a81376a-03e1-439e-bf2c-54df92ee15d3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '963f6ccf-2d46-47a2-bfc8-4625c40edf56',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020115Z:963f6ccf-2d46-47a2-bfc8-4625c40edf56',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f1c557d5-aede-49e3-97cd-1af5b2603a57',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11323',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6c0a13a1-19c5-40c1-8b87-b3ab46154584',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f1c557d5-aede-49e3-97cd-1af5b2603a57',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020116Z:f1c557d5-aede-49e3-97cd-1af5b2603a57',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6121c7eb-dc02-4d2a-856c-05ce950f3456',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11322',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ed2034c5-f5a5-4cfa-ac1a-851cdeddea2a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6121c7eb-dc02-4d2a-856c-05ce950f3456',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020116Z:6121c7eb-dc02-4d2a-856c-05ce950f3456',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '97b0ab31-5608-4be4-9a06-54eb3bed499c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11321',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd25760ce-7a70-44c3-8087-dbc46ac2b7a8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '97b0ab31-5608-4be4-9a06-54eb3bed499c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020116Z:97b0ab31-5608-4be4-9a06-54eb3bed499c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a3ad7a99-7681-4889-9205-6d01b1647081',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11320',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f6409b5c-9386-4920-9d6b-b2c6b75a3387',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a3ad7a99-7681-4889-9205-6d01b1647081',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020117Z:a3ad7a99-7681-4889-9205-6d01b1647081',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9c6e3482-f633-4921-9777-a43583b14887',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11319',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9cf15a51-74ee-4420-9f33-b4110bb75aeb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9c6e3482-f633-4921-9777-a43583b14887',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020117Z:9c6e3482-f633-4921-9777-a43583b14887',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '800b080d-6aa7-4d74-9d26-339e304c8273',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11318',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '302be32b-b893-47c2-bf6f-c5218298a9ae',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '800b080d-6aa7-4d74-9d26-339e304c8273',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020117Z:800b080d-6aa7-4d74-9d26-339e304c8273',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5e5b9839-d7ce-42df-9321-8a32ce84afa0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11317',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8bdbb69e-8d4c-4579-9a66-09ab693aed23',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5e5b9839-d7ce-42df-9321-8a32ce84afa0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020118Z:5e5b9839-d7ce-42df-9321-8a32ce84afa0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '84136bed-dcf8-46b4-9043-fd5d9069ec14',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11316',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b46aff52-520d-40ea-96be-a7ff9b4d64c2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '84136bed-dcf8-46b4-9043-fd5d9069ec14',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020118Z:84136bed-dcf8-46b4-9043-fd5d9069ec14',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3421981b-21d8-4fda-a26b-ecb03d8bd684',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11315',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3257db6c-3f3d-4be8-9052-544c64743d73',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3421981b-21d8-4fda-a26b-ecb03d8bd684',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020118Z:3421981b-21d8-4fda-a26b-ecb03d8bd684',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fe90cb3c-3dc9-4649-8a3d-2fb86b812b30',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11314',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '04a92a9b-64ff-44f6-af6f-9fa6efb991f0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fe90cb3c-3dc9-4649-8a3d-2fb86b812b30',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020119Z:fe90cb3c-3dc9-4649-8a3d-2fb86b812b30',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f31712d1-9977-429d-a52e-c3ebdb2d69ba',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11313',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3f5a7509-0032-4d07-bc7b-e6eb520ddcdc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f31712d1-9977-429d-a52e-c3ebdb2d69ba',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020119Z:f31712d1-9977-429d-a52e-c3ebdb2d69ba',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '657c386c-a0aa-47df-825a-ed222d8d338d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11312',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '92f23720-87ae-41c2-9930-6c64c1cd4e77',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '657c386c-a0aa-47df-825a-ed222d8d338d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020119Z:657c386c-a0aa-47df-825a-ed222d8d338d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3f39e0fc-45a6-45a5-923c-2240bda94f75',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11311',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cefd603d-7be1-4bd1-84d6-f4304b170319',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3f39e0fc-45a6-45a5-923c-2240bda94f75',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020120Z:3f39e0fc-45a6-45a5-923c-2240bda94f75',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c48a66bc-1663-4284-886c-cb8d34d12d6e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11310',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '69035782-f5aa-4153-8f10-7518d637af69',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c48a66bc-1663-4284-886c-cb8d34d12d6e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020120Z:c48a66bc-1663-4284-886c-cb8d34d12d6e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bc9002c3-dffa-4bfc-886f-f4b39946a13b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11309',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2f7c6b50-7649-4037-81d9-de14c7a147cb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bc9002c3-dffa-4bfc-886f-f4b39946a13b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020120Z:bc9002c3-dffa-4bfc-886f-f4b39946a13b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f4c5f999-c5c3-4417-9cdc-b8d3996598eb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11308',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '58e50dc1-15de-48c9-8ec6-56fd8a5ee87c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f4c5f999-c5c3-4417-9cdc-b8d3996598eb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020121Z:f4c5f999-c5c3-4417-9cdc-b8d3996598eb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9b4a1c52-d9be-4c32-b77c-e19e7f03438f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11307',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6e1d78a0-5e55-43f9-a0d6-ca34fb781d7a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9b4a1c52-d9be-4c32-b77c-e19e7f03438f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020121Z:9b4a1c52-d9be-4c32-b77c-e19e7f03438f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'caad7028-02bf-4986-a5f8-11d6d9ed23b5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11306',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e2c4bd08-7018-4956-82a6-33b0a3190734',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'caad7028-02bf-4986-a5f8-11d6d9ed23b5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020121Z:caad7028-02bf-4986-a5f8-11d6d9ed23b5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e85f3580-3641-41ae-9e67-40370d8169e0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11305',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4c9df0c6-7667-4db1-bd65-4468508c7522',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e85f3580-3641-41ae-9e67-40370d8169e0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020122Z:e85f3580-3641-41ae-9e67-40370d8169e0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1d3c1302-80ac-4742-9d76-950e69e984c8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11304',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b55b5c6a-94b6-4a47-904c-f04ca70539e2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1d3c1302-80ac-4742-9d76-950e69e984c8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020122Z:1d3c1302-80ac-4742-9d76-950e69e984c8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5318c515-aaca-4618-9fc8-61633b5382c8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11303',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd5293180-76b9-4f30-8bbd-c57efb84d089',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5318c515-aaca-4618-9fc8-61633b5382c8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020123Z:5318c515-aaca-4618-9fc8-61633b5382c8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5211f49f-7b30-491f-845e-af77b50e9302',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11302',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6c201d6e-1b88-42f6-bd39-69e74559051e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5211f49f-7b30-491f-845e-af77b50e9302',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020123Z:5211f49f-7b30-491f-845e-af77b50e9302',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fe5344b5-5e95-4f71-b552-2994916173f8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11301',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1f9ab22a-abba-4fb1-a663-d7bc5d501c05',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fe5344b5-5e95-4f71-b552-2994916173f8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020123Z:fe5344b5-5e95-4f71-b552-2994916173f8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8d3e170e-ee72-4e98-9e91-e996e0dac641',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11300',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ebfefda3-b8c2-453c-8744-012d7d22ba69',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8d3e170e-ee72-4e98-9e91-e996e0dac641',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020124Z:8d3e170e-ee72-4e98-9e91-e996e0dac641',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b3c5812-de60-4c5f-8b5d-8af2b013d997',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11299',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3fc6117f-ed82-411c-a155-36a9d26889cc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b3c5812-de60-4c5f-8b5d-8af2b013d997',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020124Z:2b3c5812-de60-4c5f-8b5d-8af2b013d997',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '38b790fa-bdc5-4ed7-9e4e-db72cafc5fa1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11298',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0dbff044-39e8-4835-bfc7-0a6883410195',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '38b790fa-bdc5-4ed7-9e4e-db72cafc5fa1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020124Z:38b790fa-bdc5-4ed7-9e4e-db72cafc5fa1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c518c49d-daa3-4e5f-9a36-e5f8efa0bb65',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11297',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '322bb53e-c96f-4669-a4dd-b1947108a0ae',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c518c49d-daa3-4e5f-9a36-e5f8efa0bb65',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020125Z:c518c49d-daa3-4e5f-9a36-e5f8efa0bb65',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '645c6abd-605c-46e7-a330-7420c221a620',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11296',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b18e0021-7447-4e09-ab24-6ef40ac0f24c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '645c6abd-605c-46e7-a330-7420c221a620',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020125Z:645c6abd-605c-46e7-a330-7420c221a620',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '545b64a9-eb77-4ed7-9025-f93ed9a5ea37',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11295',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4560dc16-250d-4810-97a6-815abf073201',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '545b64a9-eb77-4ed7-9025-f93ed9a5ea37',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020125Z:545b64a9-eb77-4ed7-9025-f93ed9a5ea37',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7c4102c3-4d4e-4af0-885b-51c75e327089',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11294',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '988fc892-bcd6-403b-b749-701e67e4deb6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7c4102c3-4d4e-4af0-885b-51c75e327089',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020126Z:7c4102c3-4d4e-4af0-885b-51c75e327089',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b2d0f33-2a36-49db-b92b-fd36acc99f85',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11293',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6b596a8f-095f-4a17-9a2f-3232da4d5c5f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b2d0f33-2a36-49db-b92b-fd36acc99f85',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020126Z:2b2d0f33-2a36-49db-b92b-fd36acc99f85',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '531a257c-c27c-47b5-b6d9-151eefcbad41',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11292',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '63736a5b-c18a-42cc-9b1e-87cfb48070f9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '531a257c-c27c-47b5-b6d9-151eefcbad41',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020126Z:531a257c-c27c-47b5-b6d9-151eefcbad41',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8a7e25a7-3d7d-492d-9ef3-7630cc9d07ba',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11291',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1883894a-ea0d-4b43-8a12-23eaec63240a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8a7e25a7-3d7d-492d-9ef3-7630cc9d07ba',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020127Z:8a7e25a7-3d7d-492d-9ef3-7630cc9d07ba',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3f76fd6e-225f-4ebc-ab81-6b8aeb79ccc4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11290',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '896c130f-32be-468f-a059-f9c7edb6fcaa',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3f76fd6e-225f-4ebc-ab81-6b8aeb79ccc4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020127Z:3f76fd6e-225f-4ebc-ab81-6b8aeb79ccc4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c11229da-ae19-4a04-be65-aab9d3fc693d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11289',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0e65724b-e812-4903-b1d8-ddcdca1a8e38',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c11229da-ae19-4a04-be65-aab9d3fc693d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020127Z:c11229da-ae19-4a04-be65-aab9d3fc693d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fe84b53e-7c82-4f4b-9629-0879f58784ac',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11288',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '49811a70-8493-4f4f-9277-5029c9d7930a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fe84b53e-7c82-4f4b-9629-0879f58784ac',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020128Z:fe84b53e-7c82-4f4b-9629-0879f58784ac',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f76d84bd-e9ed-4331-ac8b-173bcd13156c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11287',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b7551735-1a3f-46aa-8d7b-0d0cae1ae461',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f76d84bd-e9ed-4331-ac8b-173bcd13156c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020128Z:f76d84bd-e9ed-4331-ac8b-173bcd13156c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3f33d712-fedf-4bd6-af9a-683340e7f60a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11286',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cf7f520c-f5c2-4718-94e3-e39aec3fa6c5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3f33d712-fedf-4bd6-af9a-683340e7f60a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020128Z:3f33d712-fedf-4bd6-af9a-683340e7f60a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3c009f30-e274-4b95-9c0d-1d91a92c1f58',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11285',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c1a15968-16c9-45fa-abfb-f7c7b07e4e47',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3c009f30-e274-4b95-9c0d-1d91a92c1f58',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020129Z:3c009f30-e274-4b95-9c0d-1d91a92c1f58',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6dd7a0ce-7239-46ab-acde-9ddb155bb24e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11284',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5570df4f-1af1-4080-9a6c-807c81b495af',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6dd7a0ce-7239-46ab-acde-9ddb155bb24e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020129Z:6dd7a0ce-7239-46ab-acde-9ddb155bb24e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1e0d569d-f4cf-4ce3-91ed-e532b663328c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11283',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6c0ee646-a19e-4b74-a341-bab46d7b7e91',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1e0d569d-f4cf-4ce3-91ed-e532b663328c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020129Z:1e0d569d-f4cf-4ce3-91ed-e532b663328c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '85aba7ab-2f90-4d93-b153-835d059e1b6c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11282',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1693c1e5-f744-43b4-b8ca-418714380856',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '85aba7ab-2f90-4d93-b153-835d059e1b6c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020130Z:85aba7ab-2f90-4d93-b153-835d059e1b6c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7c137d6b-1b14-4832-b2f2-6e2076150d93',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11281',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '73359de0-cac6-4183-9e08-60409ae6da85',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7c137d6b-1b14-4832-b2f2-6e2076150d93',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020130Z:7c137d6b-1b14-4832-b2f2-6e2076150d93',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '225515e7-d9a2-4065-9e3e-12c37db59003',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11280',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c69c98b5-1b40-4252-b0c0-bcdd9541de2f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '225515e7-d9a2-4065-9e3e-12c37db59003',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020130Z:225515e7-d9a2-4065-9e3e-12c37db59003',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bde1e446-c909-4ef4-aa08-16e381e21cc8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11279',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cd26af16-452d-4256-89fa-a5cec944303e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bde1e446-c909-4ef4-aa08-16e381e21cc8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020131Z:bde1e446-c909-4ef4-aa08-16e381e21cc8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '42230f04-6d51-4a39-871b-a2be6ce6e5ed',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11278',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '80fd3fa2-c2be-48c2-be03-a2f6af4f3d51',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '42230f04-6d51-4a39-871b-a2be6ce6e5ed',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020131Z:42230f04-6d51-4a39-871b-a2be6ce6e5ed',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f59295a4-54a0-4a15-a21d-425057c4a665',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11277',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a3db2e9d-0904-4f78-9d2a-78c94f48a546',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f59295a4-54a0-4a15-a21d-425057c4a665',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020131Z:f59295a4-54a0-4a15-a21d-425057c4a665',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cd88ed11-8c8a-4382-86d7-8679b7828c0b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11276',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd3b61dfc-b533-4613-ac2f-36fa226c1898',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cd88ed11-8c8a-4382-86d7-8679b7828c0b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020132Z:cd88ed11-8c8a-4382-86d7-8679b7828c0b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '46976212-3230-4876-af09-9869aa43f9f7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11275',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '53ec4c58-b65c-41df-85f6-37dd920226e1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '46976212-3230-4876-af09-9869aa43f9f7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020132Z:46976212-3230-4876-af09-9869aa43f9f7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ab854849-6a85-414b-b3fb-32051383ad60',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11274',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e733da25-9d75-4cc0-83d6-e59f8a38a93c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ab854849-6a85-414b-b3fb-32051383ad60',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020132Z:ab854849-6a85-414b-b3fb-32051383ad60',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '409050c9-1203-4ff7-a8cf-e9d29c00f893',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11273',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1bfaffc7-a930-485d-8fc1-48a43b9342df',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '409050c9-1203-4ff7-a8cf-e9d29c00f893',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020133Z:409050c9-1203-4ff7-a8cf-e9d29c00f893',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6553c31a-fee4-4152-8228-8c200932f74b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11272',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0da80aa1-553a-486d-b0df-754a7f47017b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6553c31a-fee4-4152-8228-8c200932f74b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020133Z:6553c31a-fee4-4152-8228-8c200932f74b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0f5039ed-6178-4054-ae84-462394f415d8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11271',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '31c358ed-3277-40de-b91b-2f8d57afaec4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0f5039ed-6178-4054-ae84-462394f415d8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020133Z:0f5039ed-6178-4054-ae84-462394f415d8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e700306f-1e1c-498d-be2f-d56e90812341',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11270',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '765c7342-bf61-49e8-b09d-4a0298745bf5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e700306f-1e1c-498d-be2f-d56e90812341',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020134Z:e700306f-1e1c-498d-be2f-d56e90812341',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b9394183-bc99-4cdb-ba40-555ad24a18a4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11269',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '51fc8f7b-a890-43ba-a006-cda4518e3842',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b9394183-bc99-4cdb-ba40-555ad24a18a4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020134Z:b9394183-bc99-4cdb-ba40-555ad24a18a4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c10fd4a5-e390-4cf5-9ead-9c3bf7ddc5d8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11268',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bcabd3b3-922a-491e-aed5-4e7422ad12d4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c10fd4a5-e390-4cf5-9ead-9c3bf7ddc5d8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020134Z:c10fd4a5-e390-4cf5-9ead-9c3bf7ddc5d8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '39c09bd1-80d7-43b7-9689-d0799540b046',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11267',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c9c53a36-c2c7-4a42-8a0c-5d233ec3d54e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '39c09bd1-80d7-43b7-9689-d0799540b046',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020135Z:39c09bd1-80d7-43b7-9689-d0799540b046',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0337f4c7-b9ee-4254-9f2a-9ea63ba4feb6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11266',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0266583c-50f7-49af-a7a6-cda7f253c08e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0337f4c7-b9ee-4254-9f2a-9ea63ba4feb6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020135Z:0337f4c7-b9ee-4254-9f2a-9ea63ba4feb6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1c0921aa-17f3-4d13-be20-a376595b600e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11265',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '83e803f3-7341-4617-b0f6-6f29e9d49093',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1c0921aa-17f3-4d13-be20-a376595b600e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020136Z:1c0921aa-17f3-4d13-be20-a376595b600e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bf78361f-4b0a-4580-96f2-2e35fce81a5b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11264',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dc8e0d4e-e992-4ef8-9f8a-9149fca963f4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bf78361f-4b0a-4580-96f2-2e35fce81a5b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020136Z:bf78361f-4b0a-4580-96f2-2e35fce81a5b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1551ea43-6469-4e3f-8356-d955f1b30dfc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11263',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '098b0ecc-94ef-4f44-b21b-d305a2690704',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1551ea43-6469-4e3f-8356-d955f1b30dfc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020137Z:1551ea43-6469-4e3f-8356-d955f1b30dfc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dd739b6b-79f4-4b5e-93a3-b68b45655b37',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11262',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '44915eb0-be4e-40b8-bc9e-27f6c8851555',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dd739b6b-79f4-4b5e-93a3-b68b45655b37',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020137Z:dd739b6b-79f4-4b5e-93a3-b68b45655b37',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '37b5724d-03a0-4821-a0a7-64f339039708',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11261',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '397e4360-d35d-46f4-aebf-5217bb9630d8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '37b5724d-03a0-4821-a0a7-64f339039708',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020137Z:37b5724d-03a0-4821-a0a7-64f339039708',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '57de27a1-1379-4d50-b3ec-088dc0e34974',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11260',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e96b9176-d54a-42e6-b00c-874e34a34e58',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '57de27a1-1379-4d50-b3ec-088dc0e34974',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020138Z:57de27a1-1379-4d50-b3ec-088dc0e34974',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '733df59d-6fb8-4cc2-8ca0-bdbfe45f402c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11259',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f989bf16-0bac-4a8f-b1c7-1b5b2a526e58',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '733df59d-6fb8-4cc2-8ca0-bdbfe45f402c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020138Z:733df59d-6fb8-4cc2-8ca0-bdbfe45f402c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0251358f-837c-47a9-a981-abe1f17b686f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11258',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0b9a2247-5cf2-485a-89bc-4fda553fd5c4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0251358f-837c-47a9-a981-abe1f17b686f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020138Z:0251358f-837c-47a9-a981-abe1f17b686f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c43be19d-a4b1-475a-adc5-f74d7296292b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11257',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '260b3db7-5049-412d-8a56-670bb99b58c3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c43be19d-a4b1-475a-adc5-f74d7296292b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020139Z:c43be19d-a4b1-475a-adc5-f74d7296292b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3c1f16d0-91c3-4c7f-bcda-f087a6152b5b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11256',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '80cd8f1c-5db5-4f88-8f78-82a5ed85cc63',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3c1f16d0-91c3-4c7f-bcda-f087a6152b5b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020139Z:3c1f16d0-91c3-4c7f-bcda-f087a6152b5b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '908f9850-6285-42aa-a4ca-9ec077c1ba50',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11255',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7ac4458a-530e-4fd9-9a77-a5faceb75d35',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '908f9850-6285-42aa-a4ca-9ec077c1ba50',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020139Z:908f9850-6285-42aa-a4ca-9ec077c1ba50',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2bf53807-c2ea-4fff-a7f4-6babd5e9a139',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11254',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f60c6cf1-1484-41f0-a989-f69c1a7de21e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2bf53807-c2ea-4fff-a7f4-6babd5e9a139',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020140Z:2bf53807-c2ea-4fff-a7f4-6babd5e9a139',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b1ed4a72-d784-47c8-9a23-b4bcb2a2bd55',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11253',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '98208f03-adf3-4c61-9c2e-d82a6df06256',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b1ed4a72-d784-47c8-9a23-b4bcb2a2bd55',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020140Z:b1ed4a72-d784-47c8-9a23-b4bcb2a2bd55',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ad56ede8-062c-44bd-a26e-0c4ddf94495c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11252',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fdd55a24-3c3d-4f71-8c30-804b5d3588d9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ad56ede8-062c-44bd-a26e-0c4ddf94495c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020141Z:ad56ede8-062c-44bd-a26e-0c4ddf94495c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9f53a338-9c0c-44e3-be4e-02b9273344ed',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11251',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5e404a5e-272b-48cb-8e84-d7c8917e6f85',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9f53a338-9c0c-44e3-be4e-02b9273344ed',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020141Z:9f53a338-9c0c-44e3-be4e-02b9273344ed',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ab755809-213c-4b11-91d2-97409162c3d7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11250',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '09331663-36ee-41cf-a6d4-e9b413f66a48',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ab755809-213c-4b11-91d2-97409162c3d7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020141Z:ab755809-213c-4b11-91d2-97409162c3d7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '881ffd82-702d-4ca6-a2b3-ae4bb0f9ebc1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11249',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '88bf1e4c-3933-4b76-a2b1-c4b3abb05267',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '881ffd82-702d-4ca6-a2b3-ae4bb0f9ebc1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020142Z:881ffd82-702d-4ca6-a2b3-ae4bb0f9ebc1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2fcb9f81-288d-4405-94ee-4298f48fc1a8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11248',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4a61bc01-e478-46cb-9207-35b80afea655',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2fcb9f81-288d-4405-94ee-4298f48fc1a8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020142Z:2fcb9f81-288d-4405-94ee-4298f48fc1a8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1214f29f-fc63-4089-8fa2-8f50ff01a3a9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11247',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2d8d3045-fab3-4931-87fc-d03b7dee9a76',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1214f29f-fc63-4089-8fa2-8f50ff01a3a9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020142Z:1214f29f-fc63-4089-8fa2-8f50ff01a3a9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '46ea069f-7697-4197-90a0-6d60c46d3d38',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11246',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '25ab8b7f-a963-42f2-afa8-72f36cd642d3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '46ea069f-7697-4197-90a0-6d60c46d3d38',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020143Z:46ea069f-7697-4197-90a0-6d60c46d3d38',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0505d19a-3fef-4a87-9e10-a451bee67f73',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11245',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'de2eb3b0-1da2-49a4-87a3-c014683fbb96',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0505d19a-3fef-4a87-9e10-a451bee67f73',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020143Z:0505d19a-3fef-4a87-9e10-a451bee67f73',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2e794a62-3250-4178-ac43-17d93fd5a4e8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11244',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f32ccbd8-8d71-4247-affd-8ea03121a211',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2e794a62-3250-4178-ac43-17d93fd5a4e8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020143Z:2e794a62-3250-4178-ac43-17d93fd5a4e8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '571c4078-63ac-4554-a1bd-a74fd5a83037',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11243',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ecbb9d0b-360e-46cf-8911-c85df181ec51',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '571c4078-63ac-4554-a1bd-a74fd5a83037',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020144Z:571c4078-63ac-4554-a1bd-a74fd5a83037',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fd514468-4068-461e-ae9e-6037945085fc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11242',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9929d1d2-d88a-4505-ad97-0b115f889157',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fd514468-4068-461e-ae9e-6037945085fc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020144Z:fd514468-4068-461e-ae9e-6037945085fc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '37205605-a0a7-4c17-8bee-60ca1ff7cf61',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11241',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '290bc184-bf19-48c7-9f78-413a5ed04f82',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '37205605-a0a7-4c17-8bee-60ca1ff7cf61',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020144Z:37205605-a0a7-4c17-8bee-60ca1ff7cf61',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'db64bf67-eeef-4806-992f-8001af56b916',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11240',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a2ce623a-79ff-4dc0-9c8d-75daecd35d5f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'db64bf67-eeef-4806-992f-8001af56b916',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020145Z:db64bf67-eeef-4806-992f-8001af56b916',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'add95090-ba9d-446b-9a56-a36742b869c2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11239',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6275ec2b-a81c-4f3c-bcbd-31c85b54a3c5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'add95090-ba9d-446b-9a56-a36742b869c2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020145Z:add95090-ba9d-446b-9a56-a36742b869c2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd3ee6515-0609-4dd9-a3d2-547fb4f8c8a5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11238',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '37080dbc-a233-4286-a3f1-d102a38e1165',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd3ee6515-0609-4dd9-a3d2-547fb4f8c8a5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020145Z:d3ee6515-0609-4dd9-a3d2-547fb4f8c8a5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5121d8fc-4d50-4ba4-8fc1-b8938f6ea508',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11237',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2dd6f1b0-6960-4b83-802d-221931833670',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5121d8fc-4d50-4ba4-8fc1-b8938f6ea508',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020146Z:5121d8fc-4d50-4ba4-8fc1-b8938f6ea508',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5a3452ae-1edc-4084-8252-4cdf763ab38d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11236',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'aa9023db-c817-4055-afa8-d8fa82062b07',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5a3452ae-1edc-4084-8252-4cdf763ab38d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020146Z:5a3452ae-1edc-4084-8252-4cdf763ab38d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '518be412-0d25-4478-823c-ae3708dccc5c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11235',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c6ba6ec3-935a-4635-816f-cb84d7ef7ac0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '518be412-0d25-4478-823c-ae3708dccc5c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020147Z:518be412-0d25-4478-823c-ae3708dccc5c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6ff11092-1fc0-48c5-812a-c2f4f653518b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11234',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '89e8d819-f216-4bb2-a68c-25d2cce7f3e2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6ff11092-1fc0-48c5-812a-c2f4f653518b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020147Z:6ff11092-1fc0-48c5-812a-c2f4f653518b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a216f6e2-54ed-4bdb-bfe9-5b6b354f852c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11233',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '63730b1a-2f86-4d46-bc7a-854dfdf89f56',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a216f6e2-54ed-4bdb-bfe9-5b6b354f852c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020147Z:a216f6e2-54ed-4bdb-bfe9-5b6b354f852c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1efe6924-da2b-44c0-b3ea-93dd8a3b07b6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11232',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1937a585-e43e-41a1-8684-535de51be798',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1efe6924-da2b-44c0-b3ea-93dd8a3b07b6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020148Z:1efe6924-da2b-44c0-b3ea-93dd8a3b07b6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fc86ca4e-9ed1-444f-a3f4-e014cd144833',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11231',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '36367133-9ba4-4aff-b53e-d7fe037617a6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fc86ca4e-9ed1-444f-a3f4-e014cd144833',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020148Z:fc86ca4e-9ed1-444f-a3f4-e014cd144833',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c5685cd2-7c85-47be-80ac-c8901c3c3065',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11230',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '37221698-731b-43f4-ad99-a7d549f7fde4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c5685cd2-7c85-47be-80ac-c8901c3c3065',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020148Z:c5685cd2-7c85-47be-80ac-c8901c3c3065',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '049b20e1-b64c-4502-81f6-3e5e85ba62e7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11229',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3907433b-506a-4400-a743-e18eee942398',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '049b20e1-b64c-4502-81f6-3e5e85ba62e7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020149Z:049b20e1-b64c-4502-81f6-3e5e85ba62e7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'abaa5077-3e5b-46a4-af71-6a972c36df49',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11228',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e2eb63aa-ee83-41be-82d4-69e506648992',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'abaa5077-3e5b-46a4-af71-6a972c36df49',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020149Z:abaa5077-3e5b-46a4-af71-6a972c36df49',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '83c67ab9-402a-4b3d-b740-044e12edd6ec',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11227',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '34b80af2-32ee-4fcf-ad49-8a93b7486f12',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '83c67ab9-402a-4b3d-b740-044e12edd6ec',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020149Z:83c67ab9-402a-4b3d-b740-044e12edd6ec',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6ddcd994-0b32-4e43-a656-c7a09dcc0039',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11226',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a627b2ca-0e61-4f42-b7d9-c2c7ed07ec4b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6ddcd994-0b32-4e43-a656-c7a09dcc0039',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020150Z:6ddcd994-0b32-4e43-a656-c7a09dcc0039',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2eca176c-1a5f-4d38-8514-eb9eeb750887',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11225',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '09bee51c-81fa-4bca-b8c9-e4d61713b1e5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2eca176c-1a5f-4d38-8514-eb9eeb750887',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020150Z:2eca176c-1a5f-4d38-8514-eb9eeb750887',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c5a5841f-aee6-402b-83f3-91da3b72ca60',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11224',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ad44c6b5-673b-402b-ac58-32e98f1f5b03',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c5a5841f-aee6-402b-83f3-91da3b72ca60',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020150Z:c5a5841f-aee6-402b-83f3-91da3b72ca60',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8b172478-a17d-40d2-9678-b55c156f5099',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11223',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a4922fbb-2443-4281-9308-86f5ae5a3086',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8b172478-a17d-40d2-9678-b55c156f5099',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020151Z:8b172478-a17d-40d2-9678-b55c156f5099',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e07c9dbe-4558-41fb-8dce-ee47056d55b9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11222',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c99a66bf-a16e-4473-9f36-84b35d49a526',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e07c9dbe-4558-41fb-8dce-ee47056d55b9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020151Z:e07c9dbe-4558-41fb-8dce-ee47056d55b9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '84c3073c-5e30-4d5a-a4b0-7ec93556a8a5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11221',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd05cd466-066e-4641-be8a-cbd11fb63f03',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '84c3073c-5e30-4d5a-a4b0-7ec93556a8a5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020151Z:84c3073c-5e30-4d5a-a4b0-7ec93556a8a5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '80c40dde-fd46-4866-9f55-ae48ead12598',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11220',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3756d96b-4c3c-4e68-9d87-22fa226d0068',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '80c40dde-fd46-4866-9f55-ae48ead12598',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020152Z:80c40dde-fd46-4866-9f55-ae48ead12598',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4e004efa-ea08-410f-bd9c-ea2c0f729eb4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11219',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2926d08e-164d-44f0-bb88-607f29f40ded',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4e004efa-ea08-410f-bd9c-ea2c0f729eb4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020152Z:4e004efa-ea08-410f-bd9c-ea2c0f729eb4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '647a86a3-9aff-4be0-8b01-b883ea4634e2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11218',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '02d7852f-1839-4601-aaef-d051cc26a5c5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '647a86a3-9aff-4be0-8b01-b883ea4634e2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020152Z:647a86a3-9aff-4be0-8b01-b883ea4634e2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a880b9e9-7a8c-4a4d-8c14-b6e990a170fa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11217',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd56edd4c-3fcb-42c0-bbde-6545b84ca7c8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a880b9e9-7a8c-4a4d-8c14-b6e990a170fa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020153Z:a880b9e9-7a8c-4a4d-8c14-b6e990a170fa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dcbfd87e-5171-489b-8ae2-97bd2409b487',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11216',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8765a369-cd77-480b-b575-844ba0ce8335',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dcbfd87e-5171-489b-8ae2-97bd2409b487',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020153Z:dcbfd87e-5171-489b-8ae2-97bd2409b487',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3b09e508-ded6-4c8f-87d1-14219442bbd1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11215',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '57271345-f2d0-4078-aa08-c15027c71f4a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3b09e508-ded6-4c8f-87d1-14219442bbd1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020153Z:3b09e508-ded6-4c8f-87d1-14219442bbd1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9a23eaae-0de4-4949-a059-9b4aac6c4da4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11214',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'aade8205-ac82-411e-814d-a5e5b8c05ada',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9a23eaae-0de4-4949-a059-9b4aac6c4da4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020154Z:9a23eaae-0de4-4949-a059-9b4aac6c4da4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e6c497bc-c560-41e8-aa92-6b56f4d877eb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11213',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a084462f-e1ff-401e-8fdd-935442389fb4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e6c497bc-c560-41e8-aa92-6b56f4d877eb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020154Z:e6c497bc-c560-41e8-aa92-6b56f4d877eb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '410b5a1d-4872-44a6-a562-a71fe6efbf50',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11212',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8a5ad7f9-f095-4a2e-beec-e8bb63fc9452',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '410b5a1d-4872-44a6-a562-a71fe6efbf50',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020154Z:410b5a1d-4872-44a6-a562-a71fe6efbf50',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '476ab3ab-3d00-4424-a3c5-72b16db87ac2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11211',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ab3d51d9-d301-4b2b-a357-1422b712a65c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '476ab3ab-3d00-4424-a3c5-72b16db87ac2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020155Z:476ab3ab-3d00-4424-a3c5-72b16db87ac2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0dfa0d93-eb59-4b54-9272-f639dd65f50e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11210',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b90ec2fa-19f1-4969-ab8e-7531c3d67e8a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0dfa0d93-eb59-4b54-9272-f639dd65f50e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020155Z:0dfa0d93-eb59-4b54-9272-f639dd65f50e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '857c766b-a202-4885-a763-aef6af0877bd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11209',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b14cdbb4-245e-48d8-8741-d2158c4d0899',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '857c766b-a202-4885-a763-aef6af0877bd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020155Z:857c766b-a202-4885-a763-aef6af0877bd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '06bf80c6-2c38-4970-9b3a-1acd885a2174',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11208',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f09e54b2-be4b-402a-8e08-80a186bf3c41',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '06bf80c6-2c38-4970-9b3a-1acd885a2174',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020156Z:06bf80c6-2c38-4970-9b3a-1acd885a2174',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5905d9af-5615-4ff8-8799-5bb2b029d193',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11207',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '00e34d4b-234d-4270-991c-5a2367dfac00',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5905d9af-5615-4ff8-8799-5bb2b029d193',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020156Z:5905d9af-5615-4ff8-8799-5bb2b029d193',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e5e62097-4952-481b-81ae-45dd55dc7403',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11206',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '72879208-4d03-4514-8f78-edeaa7495a67',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e5e62097-4952-481b-81ae-45dd55dc7403',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020156Z:e5e62097-4952-481b-81ae-45dd55dc7403',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '128b0411-800b-43f0-a272-af74f22c769a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11205',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '795ea23b-1c1d-4c51-ba50-a7fdce4d885a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '128b0411-800b-43f0-a272-af74f22c769a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020157Z:128b0411-800b-43f0-a272-af74f22c769a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '26213f83-0ee1-4c2f-97a3-de3f74e9f6a2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11204',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4493a97f-5c23-49c7-951c-7b2048db01db',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '26213f83-0ee1-4c2f-97a3-de3f74e9f6a2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020157Z:26213f83-0ee1-4c2f-97a3-de3f74e9f6a2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c76a59cb-26cb-4fa6-84f9-227c266cbd2f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11203',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1b544cc7-2b87-4109-8350-630fd6afbddc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c76a59cb-26cb-4fa6-84f9-227c266cbd2f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020157Z:c76a59cb-26cb-4fa6-84f9-227c266cbd2f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ff3f8497-8e09-4907-825c-fddec974b3f9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11202',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '843d86dc-265c-423b-ae73-82cb73e338dc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ff3f8497-8e09-4907-825c-fddec974b3f9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020158Z:ff3f8497-8e09-4907-825c-fddec974b3f9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bf486b80-6fc2-4d2d-b788-9bceadf070d6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11201',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'da4b9426-6b7e-4ce2-ba97-65c6622c6367',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bf486b80-6fc2-4d2d-b788-9bceadf070d6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020158Z:bf486b80-6fc2-4d2d-b788-9bceadf070d6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b8094fc0-8384-4dad-ad83-58f49955b5ec',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11200',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e9643eda-c43c-4187-b70b-2e81982a8528',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b8094fc0-8384-4dad-ad83-58f49955b5ec',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020158Z:b8094fc0-8384-4dad-ad83-58f49955b5ec',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fdd488df-cf4b-43c5-bf83-3a9910f09d0e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11199',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c6239874-8bdc-4649-af85-dd6ff7f4f3b5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fdd488df-cf4b-43c5-bf83-3a9910f09d0e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020159Z:fdd488df-cf4b-43c5-bf83-3a9910f09d0e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9e7b1545-81c3-473b-8eca-ed4ee78de6eb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11198',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd27c5fb3-30c7-45d0-9911-38415121a5a3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9e7b1545-81c3-473b-8eca-ed4ee78de6eb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020159Z:9e7b1545-81c3-473b-8eca-ed4ee78de6eb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '753b42d4-1c66-411d-b2ef-207747d2b391',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11197',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '59e1e04c-90b2-4ecf-bd5e-16af9da8d0d4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '753b42d4-1c66-411d-b2ef-207747d2b391',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020159Z:753b42d4-1c66-411d-b2ef-207747d2b391',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '96f64f5d-2c43-44b1-8ab6-99dd4c0ea8df',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11196',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '525dac03-c47d-416d-9339-99d1abd67970',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '96f64f5d-2c43-44b1-8ab6-99dd4c0ea8df',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020200Z:96f64f5d-2c43-44b1-8ab6-99dd4c0ea8df',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b82cb93-0f62-44fd-8adc-514cb9b165fc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11195',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '30e88f10-b6f0-4d01-8a81-eee38971c7b0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b82cb93-0f62-44fd-8adc-514cb9b165fc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020200Z:2b82cb93-0f62-44fd-8adc-514cb9b165fc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '361269f4-07e2-46ab-8b9f-7f82ceb9d0e9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11194',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3fdc3a2f-80fc-4003-82cd-474b39d1ae54',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '361269f4-07e2-46ab-8b9f-7f82ceb9d0e9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020200Z:361269f4-07e2-46ab-8b9f-7f82ceb9d0e9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:01:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1c170df6-4adf-49b4-8719-767df90c39b0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11193',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f6205f47-a169-47cb-a846-69b933556de4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1c170df6-4adf-49b4-8719-767df90c39b0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020201Z:1c170df6-4adf-49b4-8719-767df90c39b0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '232e9b6e-7777-4993-a22c-08007a155459',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11192',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3d918fbe-9a6a-4295-8a9a-0cbd4422bd9a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '232e9b6e-7777-4993-a22c-08007a155459',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020201Z:232e9b6e-7777-4993-a22c-08007a155459',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '45dc3269-694e-410f-8423-2d5d6940186a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11191',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ce0dc212-bde3-423b-8b6d-3ea48e60db29',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '45dc3269-694e-410f-8423-2d5d6940186a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020201Z:45dc3269-694e-410f-8423-2d5d6940186a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5601824b-b728-4ec8-b91a-f6cb370bfe2a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11190',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b757a265-a734-4444-aee1-1516c6a8ef77',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5601824b-b728-4ec8-b91a-f6cb370bfe2a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020202Z:5601824b-b728-4ec8-b91a-f6cb370bfe2a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5b366a6c-6b75-42f8-abe0-9aedefc29135',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11189',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd7f913a3-9d38-4546-a47e-5e056f1a815d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5b366a6c-6b75-42f8-abe0-9aedefc29135',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020202Z:5b366a6c-6b75-42f8-abe0-9aedefc29135',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '80b2a452-4bb9-4f03-b45c-c8f613d8447f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11188',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '872393f9-5f24-4d34-86df-469898329d1a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '80b2a452-4bb9-4f03-b45c-c8f613d8447f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020202Z:80b2a452-4bb9-4f03-b45c-c8f613d8447f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e0edbfc0-bb15-43e5-ab5a-0db64326d0b9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11187',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9b7b3c12-871f-4b61-8b45-b033537b6ffe',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e0edbfc0-bb15-43e5-ab5a-0db64326d0b9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020203Z:e0edbfc0-bb15-43e5-ab5a-0db64326d0b9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8ef0ed65-e6cc-4993-8030-cd2a75cf9fb0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11186',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c24fc76c-b719-400d-ba36-ed55670c0ebd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8ef0ed65-e6cc-4993-8030-cd2a75cf9fb0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020203Z:8ef0ed65-e6cc-4993-8030-cd2a75cf9fb0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b036207d-796d-46aa-a8e9-97a278e602ee',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11185',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e69093e3-0116-447c-ad88-3e596d004630',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b036207d-796d-46aa-a8e9-97a278e602ee',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020203Z:b036207d-796d-46aa-a8e9-97a278e602ee',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a2c9d043-490a-49a0-a64b-2d4432f1c8d5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11184',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b98ca8c1-d21c-4833-8972-63364a4f58e9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a2c9d043-490a-49a0-a64b-2d4432f1c8d5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020204Z:a2c9d043-490a-49a0-a64b-2d4432f1c8d5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cff4f190-0010-4c57-8393-7f708ad7e4d5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11183',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b3ddc205-7853-4f2f-8494-e226a19d4521',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cff4f190-0010-4c57-8393-7f708ad7e4d5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020204Z:cff4f190-0010-4c57-8393-7f708ad7e4d5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0d1c48a9-cc74-4116-bca7-81feb608dd9e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11182',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7fbaa3a4-698c-41f3-beea-2c58bcbba11d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0d1c48a9-cc74-4116-bca7-81feb608dd9e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020204Z:0d1c48a9-cc74-4116-bca7-81feb608dd9e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'acba9340-ed7b-43f5-9e81-4105faa9e333',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11181',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'deb0a08a-a161-4b7d-a8bc-5057ca09a973',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'acba9340-ed7b-43f5-9e81-4105faa9e333',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020205Z:acba9340-ed7b-43f5-9e81-4105faa9e333',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f035c4a2-ff2b-408b-9d61-535b1e117659',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11180',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '69a68c41-07aa-4f73-9b59-803be40b13d5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f035c4a2-ff2b-408b-9d61-535b1e117659',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020205Z:f035c4a2-ff2b-408b-9d61-535b1e117659',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '42c60ba7-740e-434c-b2a5-cb2ed1a3afe3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11179',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '677e06d0-6001-409c-b441-34a9185b7e39',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '42c60ba7-740e-434c-b2a5-cb2ed1a3afe3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020205Z:42c60ba7-740e-434c-b2a5-cb2ed1a3afe3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '47796787-2446-4628-b111-4d489f3a1406',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11178',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4e062c25-104d-47ff-924f-6d39bb281a7a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '47796787-2446-4628-b111-4d489f3a1406',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020206Z:47796787-2446-4628-b111-4d489f3a1406',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '574699ae-afc7-4bf1-aef5-cb604628ff43',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11177',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1bdabe18-129f-4bb5-b986-f06b2b0b6647',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '574699ae-afc7-4bf1-aef5-cb604628ff43',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020206Z:574699ae-afc7-4bf1-aef5-cb604628ff43',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'aa37fa27-be6a-4cdb-8ab5-f5091e28fea1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11176',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '506d2895-dcff-4777-9564-a18927940b4a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'aa37fa27-be6a-4cdb-8ab5-f5091e28fea1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020206Z:aa37fa27-be6a-4cdb-8ab5-f5091e28fea1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd00019f9-420e-4c3c-965f-92d6ffd4ca39',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11175',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bcfd6dee-55bc-46cb-8f4c-8c40552868e9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd00019f9-420e-4c3c-965f-92d6ffd4ca39',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020207Z:d00019f9-420e-4c3c-965f-92d6ffd4ca39',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f34f5657-c9da-4940-92dc-bd9880715c42',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11174',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7e240526-42d3-4ffb-b8ee-421e592d57f8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f34f5657-c9da-4940-92dc-bd9880715c42',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020207Z:f34f5657-c9da-4940-92dc-bd9880715c42',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'afb683fa-71c2-492c-8ef4-16393efc6a29',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11173',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cb507201-8c37-4134-8136-dd93b6f1d55c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'afb683fa-71c2-492c-8ef4-16393efc6a29',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020207Z:afb683fa-71c2-492c-8ef4-16393efc6a29',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b256d851-0a5f-437f-ac81-d965419b01d3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11172',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2dc64e87-5c88-4987-8373-3e3f12fae837',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b256d851-0a5f-437f-ac81-d965419b01d3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020208Z:b256d851-0a5f-437f-ac81-d965419b01d3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7239acde-7615-4d12-8421-529fb03c6851',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11171',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '741b4989-e709-4766-832a-f08d2d9667b0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7239acde-7615-4d12-8421-529fb03c6851',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020208Z:7239acde-7615-4d12-8421-529fb03c6851',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '405a2b0d-75a3-4f13-a957-415a06c1a445',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11170',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '08860bf9-24eb-4820-8d9b-47ed9aad1460',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '405a2b0d-75a3-4f13-a957-415a06c1a445',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020208Z:405a2b0d-75a3-4f13-a957-415a06c1a445',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6896694e-1c49-41e9-8581-ad2ed7371c9f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11169',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0575c4cd-b586-42b3-a1fd-031168ed35da',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6896694e-1c49-41e9-8581-ad2ed7371c9f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020209Z:6896694e-1c49-41e9-8581-ad2ed7371c9f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9af9bd6c-23d9-4980-871f-528aae85bdbc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11168',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd47fa9a1-1078-4f5e-a2ab-8dcee6edcd4a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9af9bd6c-23d9-4980-871f-528aae85bdbc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020209Z:9af9bd6c-23d9-4980-871f-528aae85bdbc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '450c8dbc-9845-4161-ae7d-663e4d9f9f5c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11167',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ab564953-14f2-4dbf-ae1d-d7b539c20d0e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '450c8dbc-9845-4161-ae7d-663e4d9f9f5c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020209Z:450c8dbc-9845-4161-ae7d-663e4d9f9f5c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2d394b0e-4145-4eb3-ae52-ce9d0e6b6617',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11166',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dd0a9d58-75c9-4ced-a4ac-80ba1c7feb02',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2d394b0e-4145-4eb3-ae52-ce9d0e6b6617',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020210Z:2d394b0e-4145-4eb3-ae52-ce9d0e6b6617',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2d084cd5-190a-49b9-9238-d048366515c4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11165',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '594d04c6-f5fc-4fcf-9a6c-6d1f4d593ae4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2d084cd5-190a-49b9-9238-d048366515c4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020211Z:2d084cd5-190a-49b9-9238-d048366515c4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '988d305f-6924-4e06-9425-4799ba0ae130',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11164',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '52703897-0cd0-4707-a04f-c11ff3331989',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '988d305f-6924-4e06-9425-4799ba0ae130',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020211Z:988d305f-6924-4e06-9425-4799ba0ae130',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'acb5b5be-14ec-4d95-9353-584f65ca94b2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11163',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cfffade0-339c-4d01-880e-5c94ac35c235',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'acb5b5be-14ec-4d95-9353-584f65ca94b2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020211Z:acb5b5be-14ec-4d95-9353-584f65ca94b2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ccbd30bb-c264-4db2-a6ec-775adde52e4e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11162',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2f2b2468-0cab-4ceb-95fe-77f2d9d8ede9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ccbd30bb-c264-4db2-a6ec-775adde52e4e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020212Z:ccbd30bb-c264-4db2-a6ec-775adde52e4e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c957194c-dac8-4fef-a6a8-6e9688641a39',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11161',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '14d0bc13-481e-4560-97ff-dcccbcbb0b89',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c957194c-dac8-4fef-a6a8-6e9688641a39',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020212Z:c957194c-dac8-4fef-a6a8-6e9688641a39',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '18ae2bf1-7a81-48ff-b083-606e156fac9c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11160',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6acbd69f-7631-411f-a4bf-1b6e0e424444',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '18ae2bf1-7a81-48ff-b083-606e156fac9c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020212Z:18ae2bf1-7a81-48ff-b083-606e156fac9c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0037bee5-5ce3-47ac-9286-842e13814b6f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11159',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '12275030-0aa2-4c13-a074-a78ce8478b27',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0037bee5-5ce3-47ac-9286-842e13814b6f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020213Z:0037bee5-5ce3-47ac-9286-842e13814b6f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7020da92-3729-48f8-b0be-3d348ff19ea5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11158',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0494ee9b-b8f2-47c0-bc88-178633fe0cd9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7020da92-3729-48f8-b0be-3d348ff19ea5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020213Z:7020da92-3729-48f8-b0be-3d348ff19ea5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9a661cfd-3f24-4c4e-adc9-fbb6fe36ba42',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11157',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1d4a3933-7265-4268-b6a3-1691a03a58bd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9a661cfd-3f24-4c4e-adc9-fbb6fe36ba42',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020213Z:9a661cfd-3f24-4c4e-adc9-fbb6fe36ba42',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e7fa0259-1bc1-41aa-82f3-6b362785ab04',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11156',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a802ab3b-1bc1-46df-89ba-19738275cd02',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e7fa0259-1bc1-41aa-82f3-6b362785ab04',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020214Z:e7fa0259-1bc1-41aa-82f3-6b362785ab04',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fd53c6cb-4d81-4a40-bfd4-648baae1e4a9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11155',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd9eee8b3-f144-44b6-9bb2-170ac11419e8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fd53c6cb-4d81-4a40-bfd4-648baae1e4a9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020214Z:fd53c6cb-4d81-4a40-bfd4-648baae1e4a9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7296a571-b578-4058-9835-c25ed8e69d15',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11154',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fffe7a7f-fd61-4c33-907e-209bccb976a7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7296a571-b578-4058-9835-c25ed8e69d15',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020214Z:7296a571-b578-4058-9835-c25ed8e69d15',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0a4fd40d-ee8e-4e8e-9291-47c68645180b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11153',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f2d524b3-0e84-40a6-8ae7-889002b7b818',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0a4fd40d-ee8e-4e8e-9291-47c68645180b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020215Z:0a4fd40d-ee8e-4e8e-9291-47c68645180b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '44f8e8e2-861e-4c2c-9aa8-7fbb513184d2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11152',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '020961dc-0800-44b6-a8cd-43bde9f03f4c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '44f8e8e2-861e-4c2c-9aa8-7fbb513184d2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020215Z:44f8e8e2-861e-4c2c-9aa8-7fbb513184d2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '951c2383-2048-4286-9efe-4e571dc8ab52',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11151',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3f23a920-069f-415a-9bca-dc0f67883383',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '951c2383-2048-4286-9efe-4e571dc8ab52',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020215Z:951c2383-2048-4286-9efe-4e571dc8ab52',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8054bb63-42f4-4af9-8ece-c1cdef3d4d3e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11150',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '683555d2-d7bf-47de-b0f6-14fe764bab84',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8054bb63-42f4-4af9-8ece-c1cdef3d4d3e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020216Z:8054bb63-42f4-4af9-8ece-c1cdef3d4d3e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd2b66771-eadf-4f16-b18f-d2aaabd3f88e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11149',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '86068e1b-8b28-4d8b-a330-b6719ae872b2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd2b66771-eadf-4f16-b18f-d2aaabd3f88e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020216Z:d2b66771-eadf-4f16-b18f-d2aaabd3f88e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '03f06beb-7cdf-4331-9931-2503fbdb8fce',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11148',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8077dba8-194d-42a0-bb7d-84dbc7055917',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '03f06beb-7cdf-4331-9931-2503fbdb8fce',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020216Z:03f06beb-7cdf-4331-9931-2503fbdb8fce',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4a481a78-49ce-459b-be65-08a040a921d5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11147',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '743f0462-adaf-4397-b59e-6f5bcdebe0a1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4a481a78-49ce-459b-be65-08a040a921d5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020217Z:4a481a78-49ce-459b-be65-08a040a921d5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fc9b564b-db6f-4a01-aae7-843a11e2a2f6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11146',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c5734b33-858e-4aa8-aa85-da78be74a391',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fc9b564b-db6f-4a01-aae7-843a11e2a2f6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020217Z:fc9b564b-db6f-4a01-aae7-843a11e2a2f6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e01b522f-3ae2-4080-a43c-4b0429f96878',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11145',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '539388a0-7da3-4992-bf5e-dbee6153158b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e01b522f-3ae2-4080-a43c-4b0429f96878',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020217Z:e01b522f-3ae2-4080-a43c-4b0429f96878',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '023a6ff1-37d8-4f91-b1c9-00bd8ee54aa5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11144',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c6eeac36-73f1-4011-af47-ca1cef26be05',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '023a6ff1-37d8-4f91-b1c9-00bd8ee54aa5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020218Z:023a6ff1-37d8-4f91-b1c9-00bd8ee54aa5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f7f185c6-c64d-40f6-b6d7-f46a9fdbad38',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11143',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '471953db-7f5b-4017-a66c-1cce4daa0810',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f7f185c6-c64d-40f6-b6d7-f46a9fdbad38',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020218Z:f7f185c6-c64d-40f6-b6d7-f46a9fdbad38',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '732f0f59-e7fd-4a2e-9bd4-ab5770aebb57',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11142',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a639ec44-45c1-412f-99a2-bef126da182f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '732f0f59-e7fd-4a2e-9bd4-ab5770aebb57',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020218Z:732f0f59-e7fd-4a2e-9bd4-ab5770aebb57',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9d9131f3-2d39-403e-b1ac-e5ef39a1d129',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11141',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cd94ca07-3112-46a3-bc3d-7f1b4d39c8e9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9d9131f3-2d39-403e-b1ac-e5ef39a1d129',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020219Z:9d9131f3-2d39-403e-b1ac-e5ef39a1d129',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '47117813-d32b-41dd-8553-c6667a751c75',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11140',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2a336e2b-d842-46c9-b40d-37d112cbcad8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '47117813-d32b-41dd-8553-c6667a751c75',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020219Z:47117813-d32b-41dd-8553-c6667a751c75',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '08e68c13-60a2-4689-a350-81ac3d2ac661',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11139',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd6fa40da-6b02-4435-a766-fc0e60e75e60',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '08e68c13-60a2-4689-a350-81ac3d2ac661',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020219Z:08e68c13-60a2-4689-a350-81ac3d2ac661',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eba15939-52d8-4800-8ffb-11acd50dd412',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11138',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e1dcbe53-4725-483d-ada4-19ef1c591a6f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eba15939-52d8-4800-8ffb-11acd50dd412',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020220Z:eba15939-52d8-4800-8ffb-11acd50dd412',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c7c53e31-e7d0-4bef-8f2a-23c84337cb41',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11137',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0ea9a792-f87b-4aca-a2f5-52519503e776',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c7c53e31-e7d0-4bef-8f2a-23c84337cb41',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020221Z:c7c53e31-e7d0-4bef-8f2a-23c84337cb41',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7ec03369-3590-475b-bf27-abf80a526ca9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11136',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7e0783c7-ea20-4c83-aee0-004fc3d7cdaa',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7ec03369-3590-475b-bf27-abf80a526ca9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020221Z:7ec03369-3590-475b-bf27-abf80a526ca9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9f5a1a5c-13c5-40b5-91c6-bfb97f32ca60',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11135',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '62eff55a-d33e-446c-ab0f-d507d57f8528',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9f5a1a5c-13c5-40b5-91c6-bfb97f32ca60',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020221Z:9f5a1a5c-13c5-40b5-91c6-bfb97f32ca60',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f13e0df3-00a5-4403-8bbe-b695bad16b8b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11134',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '632f9619-094b-429e-b1da-d67b3dba6d69',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f13e0df3-00a5-4403-8bbe-b695bad16b8b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020222Z:f13e0df3-00a5-4403-8bbe-b695bad16b8b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4af41ee8-18db-4c80-b8f5-4bc6abc7c686',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11133',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '68312e35-d070-41e7-9f0c-df5677f6d896',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4af41ee8-18db-4c80-b8f5-4bc6abc7c686',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020222Z:4af41ee8-18db-4c80-b8f5-4bc6abc7c686',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '181f4437-824f-4d9a-8f15-2f3a50b978b7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11132',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f9ea33b9-3a11-4c0b-92f1-2ede2ce09234',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '181f4437-824f-4d9a-8f15-2f3a50b978b7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020222Z:181f4437-824f-4d9a-8f15-2f3a50b978b7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b66381d-e8ba-4f67-8728-4b09832b3dc6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11131',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c50e4418-03dd-4d23-bd32-9864ceecbc0e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b66381d-e8ba-4f67-8728-4b09832b3dc6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020223Z:2b66381d-e8ba-4f67-8728-4b09832b3dc6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '757bb75e-4890-410e-bc8b-8c402ae1c5ed',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11130',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd55f5ae5-6ffc-488f-be02-fe0caf116840',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '757bb75e-4890-410e-bc8b-8c402ae1c5ed',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020223Z:757bb75e-4890-410e-bc8b-8c402ae1c5ed',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0da7d40f-4b8b-454c-bddb-930165fb581a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11129',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c40c45f1-3053-4f16-a05a-f4c51f9ff136',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0da7d40f-4b8b-454c-bddb-930165fb581a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020223Z:0da7d40f-4b8b-454c-bddb-930165fb581a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '64e073c4-e7c6-4298-9b9e-9fa6e3f806d7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11128',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '283fd5b1-e763-4c23-94f5-7d92d1265cf7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '64e073c4-e7c6-4298-9b9e-9fa6e3f806d7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020224Z:64e073c4-e7c6-4298-9b9e-9fa6e3f806d7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '009e1dbb-b7f2-41ae-aee8-27c07ee22c1a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11127',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a5c308bd-2172-45d7-8d6e-256e4828b480',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '009e1dbb-b7f2-41ae-aee8-27c07ee22c1a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020224Z:009e1dbb-b7f2-41ae-aee8-27c07ee22c1a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1931fc3f-1975-40af-820a-70f216f9645a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11126',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd4c15974-e365-47ae-9c21-a54ecdf89aad',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1931fc3f-1975-40af-820a-70f216f9645a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020224Z:1931fc3f-1975-40af-820a-70f216f9645a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1c23d6e6-5e84-4790-8c0a-7218c2ee35da',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11125',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9b62277e-e359-4814-8acc-aa448fdf22e3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1c23d6e6-5e84-4790-8c0a-7218c2ee35da',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020225Z:1c23d6e6-5e84-4790-8c0a-7218c2ee35da',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eb0d7fbe-184e-40cc-855c-ea151f1d6abe',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11124',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a2fc134f-7ca0-4e8d-b630-31e47f8d4e9c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eb0d7fbe-184e-40cc-855c-ea151f1d6abe',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020225Z:eb0d7fbe-184e-40cc-855c-ea151f1d6abe',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd5a4a3ea-1f5a-4837-b365-4a95f7d20152',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11123',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0081c0e8-726c-4353-abaf-d43cdfc4e50f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd5a4a3ea-1f5a-4837-b365-4a95f7d20152',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020225Z:d5a4a3ea-1f5a-4837-b365-4a95f7d20152',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9fa28903-c8c0-4cf7-90f5-231deb4c4cd3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11122',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e46bbd0d-4d5b-492b-bad9-5546e62ecc07',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9fa28903-c8c0-4cf7-90f5-231deb4c4cd3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020226Z:9fa28903-c8c0-4cf7-90f5-231deb4c4cd3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9a903dc5-19e5-47ae-a537-a1f33debd1ce',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11121',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '33176ea5-4c69-4d36-b65c-a146a39a734f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9a903dc5-19e5-47ae-a537-a1f33debd1ce',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020226Z:9a903dc5-19e5-47ae-a537-a1f33debd1ce',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '98ebce4b-397f-4f40-b3a8-3b6522435fa2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11120',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cd9d3892-7f9a-415e-9d0e-a4d736fb3540',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '98ebce4b-397f-4f40-b3a8-3b6522435fa2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020226Z:98ebce4b-397f-4f40-b3a8-3b6522435fa2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8e8c0ba0-7b7f-4653-9ddb-d569ecdae8e3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11119',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9983914a-c164-45cd-b90e-48cd540e03e8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8e8c0ba0-7b7f-4653-9ddb-d569ecdae8e3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020227Z:8e8c0ba0-7b7f-4653-9ddb-d569ecdae8e3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '65d0109d-f34f-4721-bce5-20cdaf44befe',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11118',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '487ca082-a44b-4c74-8c74-5ef648842355',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '65d0109d-f34f-4721-bce5-20cdaf44befe',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020227Z:65d0109d-f34f-4721-bce5-20cdaf44befe',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c5d0495d-9c1b-45f1-9a75-f5b05d354fb1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11117',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c87d6b59-965a-4c62-b9a6-7b40d5772d38',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c5d0495d-9c1b-45f1-9a75-f5b05d354fb1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020227Z:c5d0495d-9c1b-45f1-9a75-f5b05d354fb1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '67d33fbb-e253-404d-9c99-bad4005ff0f8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11116',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'aa95d31a-3a03-42f6-9ccd-3b25b948c4e5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '67d33fbb-e253-404d-9c99-bad4005ff0f8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020228Z:67d33fbb-e253-404d-9c99-bad4005ff0f8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fcd9d2cb-e018-4f82-bd6d-afa3073b9f60',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11115',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '74e17be5-97cb-4c9f-ad6b-b807abde8bce',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fcd9d2cb-e018-4f82-bd6d-afa3073b9f60',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020228Z:fcd9d2cb-e018-4f82-bd6d-afa3073b9f60',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6177444b-612a-4c1a-802b-49fa4b242244',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11114',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9b1b838d-7b1e-4048-b945-208e08b7fa36',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6177444b-612a-4c1a-802b-49fa4b242244',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020228Z:6177444b-612a-4c1a-802b-49fa4b242244',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '549062f8-08ff-4da6-92e3-7639e25b72a4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11113',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6a6fa5bd-3431-4f53-8185-5f9ad15a8ee4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '549062f8-08ff-4da6-92e3-7639e25b72a4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020229Z:549062f8-08ff-4da6-92e3-7639e25b72a4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '102e65d1-3e4f-49c2-95a9-191718a3a48c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11112',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7cf15280-32d1-4483-a6d1-b2cc919a6ea9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '102e65d1-3e4f-49c2-95a9-191718a3a48c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020229Z:102e65d1-3e4f-49c2-95a9-191718a3a48c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e778ca21-7ad1-4570-882e-5dd252c0cc0c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11111',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '56b3424e-6e1e-4bcb-b843-2d6d400bb9d1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e778ca21-7ad1-4570-882e-5dd252c0cc0c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020229Z:e778ca21-7ad1-4570-882e-5dd252c0cc0c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a9fbf65d-2277-498b-9c56-bf5c05c38288',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11110',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '05393795-c069-4b0c-8f3f-efeab8435512',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a9fbf65d-2277-498b-9c56-bf5c05c38288',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020230Z:a9fbf65d-2277-498b-9c56-bf5c05c38288',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a3e4be16-13bb-4627-a786-293c3fd3a0e2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11109',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4a0378c5-1457-4923-ac38-ef000c9f504a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a3e4be16-13bb-4627-a786-293c3fd3a0e2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020230Z:a3e4be16-13bb-4627-a786-293c3fd3a0e2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c91e5d3f-3e4a-432e-b7a4-2c1a229d39c3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11108',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2da9c4ab-50e8-46c8-9e04-b0866c3a8f1d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c91e5d3f-3e4a-432e-b7a4-2c1a229d39c3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020230Z:c91e5d3f-3e4a-432e-b7a4-2c1a229d39c3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '75ab69b3-44e5-4ec1-8c7d-dc0291c3eb78',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11107',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd0fb8fc2-b536-4b43-b71c-e94889aed61a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '75ab69b3-44e5-4ec1-8c7d-dc0291c3eb78',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020231Z:75ab69b3-44e5-4ec1-8c7d-dc0291c3eb78',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '05b17572-5f2b-44d4-9e8e-8ce15fd425c8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11106',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '40e4477b-91c8-4090-b3c2-72141ca2f4d8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '05b17572-5f2b-44d4-9e8e-8ce15fd425c8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020231Z:05b17572-5f2b-44d4-9e8e-8ce15fd425c8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '79320cb4-47e4-4973-9f8d-2953a7326f47',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11105',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'feeaa735-6fac-4a6d-a949-d59b5843bc01',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '79320cb4-47e4-4973-9f8d-2953a7326f47',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020231Z:79320cb4-47e4-4973-9f8d-2953a7326f47',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e4fc002b-cd16-4e05-9ea5-60fb3fa24261',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11104',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '73cb86cf-2669-40b7-b097-41be7dfcf0f7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e4fc002b-cd16-4e05-9ea5-60fb3fa24261',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020232Z:e4fc002b-cd16-4e05-9ea5-60fb3fa24261',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '90b7cf42-c74e-455a-8bac-cfc1fc983f94',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11103',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '25aeaa62-e387-44e0-ad59-560ff93ae316',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '90b7cf42-c74e-455a-8bac-cfc1fc983f94',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020232Z:90b7cf42-c74e-455a-8bac-cfc1fc983f94',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '191a3966-95f3-4a2b-beca-f778bb83d3b4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11102',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e3ee94a2-9af7-4ec6-9754-7bdb0543ed60',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '191a3966-95f3-4a2b-beca-f778bb83d3b4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020232Z:191a3966-95f3-4a2b-beca-f778bb83d3b4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '79516daf-ef4a-498d-b241-3e119d5246a8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11101',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dcd83a4a-ae57-413e-8d1c-f4ba73658820',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '79516daf-ef4a-498d-b241-3e119d5246a8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020233Z:79516daf-ef4a-498d-b241-3e119d5246a8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '28d4de98-6a13-41bd-9624-af237c241be4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11100',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f8e7d9ba-2535-4fc9-94dd-879dc7c25328',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '28d4de98-6a13-41bd-9624-af237c241be4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020233Z:28d4de98-6a13-41bd-9624-af237c241be4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f86ab102-4d53-406c-a63e-e322869d3fe4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11099',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9a665d2e-eb28-4db0-8904-1067d5bc33e9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f86ab102-4d53-406c-a63e-e322869d3fe4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020233Z:f86ab102-4d53-406c-a63e-e322869d3fe4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b1584ee2-9a7c-4883-b111-a924bf4c1a3b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11098',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b504d659-89b3-40cd-a613-4f0dbdaac521',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b1584ee2-9a7c-4883-b111-a924bf4c1a3b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020234Z:b1584ee2-9a7c-4883-b111-a924bf4c1a3b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4bdff00a-20eb-4d05-9780-f945b5fbaf46',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11097',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fba3ed3e-0aaf-4a5d-8899-69c56d36263e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4bdff00a-20eb-4d05-9780-f945b5fbaf46',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020234Z:4bdff00a-20eb-4d05-9780-f945b5fbaf46',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd85e8af9-bc81-4d21-a40f-fef3b81d3e7d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11096',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '945cdf60-2860-4d04-aa25-0db0ce676ce4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd85e8af9-bc81-4d21-a40f-fef3b81d3e7d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020234Z:d85e8af9-bc81-4d21-a40f-fef3b81d3e7d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4385d368-ad93-4015-8f51-fb32ff04d04a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11095',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ce8870fc-f704-4127-9f7b-281f1346bdc8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4385d368-ad93-4015-8f51-fb32ff04d04a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020235Z:4385d368-ad93-4015-8f51-fb32ff04d04a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '66f62e38-2408-4c99-845a-e84681be5c59',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11094',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd9e1b304-45ff-4eaf-86d7-fedf9defebef',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '66f62e38-2408-4c99-845a-e84681be5c59',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020235Z:66f62e38-2408-4c99-845a-e84681be5c59',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eb96e8d9-06b7-49f6-a0fe-43b707b7da98',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11093',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2a05464b-d9a5-4848-8ae9-02278589cc46',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eb96e8d9-06b7-49f6-a0fe-43b707b7da98',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020235Z:eb96e8d9-06b7-49f6-a0fe-43b707b7da98',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '33975319-98bd-4213-b158-2aff558630fb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11092',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cc485c49-10b5-43b7-bf60-0b34761ea78e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '33975319-98bd-4213-b158-2aff558630fb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020236Z:33975319-98bd-4213-b158-2aff558630fb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fd0a8644-72e3-461f-8fa7-3c79db4a64e3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11091',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a6fe7586-61f3-478b-ab5e-3a1984fc05af',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fd0a8644-72e3-461f-8fa7-3c79db4a64e3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020236Z:fd0a8644-72e3-461f-8fa7-3c79db4a64e3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dca73537-2042-41ba-a021-fff5ab7e14da',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11090',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f5d576d0-5b45-4381-bd09-b9bbe03de39e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dca73537-2042-41ba-a021-fff5ab7e14da',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020236Z:dca73537-2042-41ba-a021-fff5ab7e14da',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '07de9506-1395-4ce9-b5e7-36b1f848bc1c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11089',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '62920fb5-3512-49f6-b413-2af3d1b6946c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '07de9506-1395-4ce9-b5e7-36b1f848bc1c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020237Z:07de9506-1395-4ce9-b5e7-36b1f848bc1c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c30a5516-48d0-499b-81f5-17b793a96a81',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11088',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'be5e7524-cc7a-494c-accf-905a9c965274',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c30a5516-48d0-499b-81f5-17b793a96a81',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020237Z:c30a5516-48d0-499b-81f5-17b793a96a81',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c782d132-145a-4f8b-ade5-2b1d8c808986',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11087',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8ac10cfe-d38d-48de-a4b6-64e4418514eb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c782d132-145a-4f8b-ade5-2b1d8c808986',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020237Z:c782d132-145a-4f8b-ade5-2b1d8c808986',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6fc03387-06a8-40f2-9dab-bf1d23eb05e9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11086',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e54f5a18-33f6-4ac4-bcff-b9d4a5a4f445',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6fc03387-06a8-40f2-9dab-bf1d23eb05e9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020238Z:6fc03387-06a8-40f2-9dab-bf1d23eb05e9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '18095ecb-a9ef-49fe-8dda-b4f0944874d1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11085',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7c44f996-70f5-4f31-8ef2-87163297366f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '18095ecb-a9ef-49fe-8dda-b4f0944874d1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020238Z:18095ecb-a9ef-49fe-8dda-b4f0944874d1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a8c5730e-9cec-47cb-b749-0c7fa2dfccdc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11084',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ac1331f8-0f89-4dee-8099-a426dc890a56',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a8c5730e-9cec-47cb-b749-0c7fa2dfccdc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020238Z:a8c5730e-9cec-47cb-b749-0c7fa2dfccdc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '721c251d-298d-4d19-87eb-2fa2e90ad37e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11083',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b7517af9-cb29-4e03-96b2-e6fbefd21bbd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '721c251d-298d-4d19-87eb-2fa2e90ad37e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020239Z:721c251d-298d-4d19-87eb-2fa2e90ad37e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '88498acc-7768-46b4-aa59-3b0e9b6876ed',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11082',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c5d2d1e8-88fd-4d43-bb46-1db22cc68dd9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '88498acc-7768-46b4-aa59-3b0e9b6876ed',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020239Z:88498acc-7768-46b4-aa59-3b0e9b6876ed',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e4b6c17d-b9fb-4350-ad3e-a7e937ade722',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11081',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '717782bf-9793-4f24-a907-5cedccfc9e49',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e4b6c17d-b9fb-4350-ad3e-a7e937ade722',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020240Z:e4b6c17d-b9fb-4350-ad3e-a7e937ade722',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4c923ffb-8b8a-4f7d-bf83-0abae332c567',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11080',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '14ee5a67-27af-42da-8762-112d11fb9af5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4c923ffb-8b8a-4f7d-bf83-0abae332c567',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020240Z:4c923ffb-8b8a-4f7d-bf83-0abae332c567',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f85ecfed-57ef-444b-b9e4-82e768dd3378',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11079',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '07b8b072-6355-4852-b926-33260e202d40',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f85ecfed-57ef-444b-b9e4-82e768dd3378',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020240Z:f85ecfed-57ef-444b-b9e4-82e768dd3378',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '746690b9-cdc3-46ee-8c77-0ecc028dde16',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11078',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7ac3f9e2-0d75-4e90-95c5-374ac602d815',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '746690b9-cdc3-46ee-8c77-0ecc028dde16',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020241Z:746690b9-cdc3-46ee-8c77-0ecc028dde16',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '87b858d3-acec-4524-85ab-eb7dcdd2e29a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11077',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '25f17870-ec49-4238-9d23-58a24c3c7a00',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '87b858d3-acec-4524-85ab-eb7dcdd2e29a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020241Z:87b858d3-acec-4524-85ab-eb7dcdd2e29a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cdf477a0-9518-47e7-92d8-da519002f4be',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11076',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '97d27c2b-03f6-485b-8103-db80521f2d6c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cdf477a0-9518-47e7-92d8-da519002f4be',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020241Z:cdf477a0-9518-47e7-92d8-da519002f4be',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ec2ae68c-92dc-45a3-a32d-da6dcfacf389',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11075',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4b1eaa36-04b1-40ba-a403-41104a995262',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ec2ae68c-92dc-45a3-a32d-da6dcfacf389',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020242Z:ec2ae68c-92dc-45a3-a32d-da6dcfacf389',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '56b11914-3383-4f5f-b41e-14f72780b06d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11074',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b156e090-8b0f-4d47-8d3e-9828bca8c219',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '56b11914-3383-4f5f-b41e-14f72780b06d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020242Z:56b11914-3383-4f5f-b41e-14f72780b06d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7313d437-4095-41a5-b691-5b2c77536486',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11073',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0101ece5-a1a6-42f0-a33c-c3114e452223',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7313d437-4095-41a5-b691-5b2c77536486',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020242Z:7313d437-4095-41a5-b691-5b2c77536486',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eaf49ae9-439e-4342-9019-164c0c941955',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11072',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'caae671e-8f64-4250-bf48-3ef4825d012a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eaf49ae9-439e-4342-9019-164c0c941955',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020243Z:eaf49ae9-439e-4342-9019-164c0c941955',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '32086d8f-beea-4845-a9e5-35a176d0095e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11071',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '992e956a-45b0-482e-9272-0d77587d3af1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '32086d8f-beea-4845-a9e5-35a176d0095e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020243Z:32086d8f-beea-4845-a9e5-35a176d0095e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3cf7cea9-20df-41bf-9f8b-6f01b8ba1ef2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11070',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a1e9d1bf-a2ad-46c0-a35b-df4cd682495a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3cf7cea9-20df-41bf-9f8b-6f01b8ba1ef2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020243Z:3cf7cea9-20df-41bf-9f8b-6f01b8ba1ef2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3a635928-3040-4190-a769-b3ccb4cf28a1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11069',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '375b7bb8-7c8b-49e9-9086-14ab1dd70b5e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3a635928-3040-4190-a769-b3ccb4cf28a1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020244Z:3a635928-3040-4190-a769-b3ccb4cf28a1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '57451706-82e0-4b4c-bb43-c412154de33d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11068',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3a42be17-4869-4860-9120-7b177e351518',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '57451706-82e0-4b4c-bb43-c412154de33d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020244Z:57451706-82e0-4b4c-bb43-c412154de33d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '22128d26-703d-466d-9a5a-765f734b9c48',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11067',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9e087038-a341-4c7b-8cd4-284a9b19e57f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '22128d26-703d-466d-9a5a-765f734b9c48',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020244Z:22128d26-703d-466d-9a5a-765f734b9c48',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '15c5ab96-51f5-49ff-81d5-d7c11251d20e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11066',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c5a08df7-2db1-407c-bcee-6d41f9ebaa97',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '15c5ab96-51f5-49ff-81d5-d7c11251d20e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020245Z:15c5ab96-51f5-49ff-81d5-d7c11251d20e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '469b6377-2b18-4e73-9d15-7b412fc54ffe',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11065',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'de74501e-40f2-4fcf-bbc8-5eb8b6ec7a6c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '469b6377-2b18-4e73-9d15-7b412fc54ffe',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020246Z:469b6377-2b18-4e73-9d15-7b412fc54ffe',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1c00878b-7dd8-4b85-b03e-bf900669efa6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11064',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd54d8f18-dcc9-4101-88ef-772c0ef9803b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1c00878b-7dd8-4b85-b03e-bf900669efa6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020246Z:1c00878b-7dd8-4b85-b03e-bf900669efa6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2866ef61-89d6-43ff-a188-0a06a60ad0f9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11063',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '75de67be-7553-4591-9a0b-5685962f4a4d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2866ef61-89d6-43ff-a188-0a06a60ad0f9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020247Z:2866ef61-89d6-43ff-a188-0a06a60ad0f9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e62a7317-dcd6-47bb-b730-cdda71974048',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11062',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd1327079-a84f-4ebe-85e9-1dc8d1120190',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e62a7317-dcd6-47bb-b730-cdda71974048',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020247Z:e62a7317-dcd6-47bb-b730-cdda71974048',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '16d64161-e597-49c6-a5b9-3f061c9ac2af',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11061',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b8262202-9381-454f-8820-3815c4db4dc7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '16d64161-e597-49c6-a5b9-3f061c9ac2af',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020247Z:16d64161-e597-49c6-a5b9-3f061c9ac2af',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '18917713-7b6e-4dd7-9a44-85bca401e58d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11060',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '794b80a5-46b4-4421-9145-6fbd916829d7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '18917713-7b6e-4dd7-9a44-85bca401e58d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020248Z:18917713-7b6e-4dd7-9a44-85bca401e58d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ccfad7d2-b03c-4b00-abb2-65758875bf6b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11059',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4741706b-c84f-454e-a1a7-689e2cb7984a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ccfad7d2-b03c-4b00-abb2-65758875bf6b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020248Z:ccfad7d2-b03c-4b00-abb2-65758875bf6b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a9f39023-2610-4072-aa2f-98483da08c4f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11058',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f5ed8cfc-75e5-40a0-879b-a52a5de5317c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a9f39023-2610-4072-aa2f-98483da08c4f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020248Z:a9f39023-2610-4072-aa2f-98483da08c4f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '89fcf5ea-9525-4279-9d9b-c79cf5723b6d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11057',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '74b08934-f560-4707-a673-bc78cf0ee2bb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '89fcf5ea-9525-4279-9d9b-c79cf5723b6d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020249Z:89fcf5ea-9525-4279-9d9b-c79cf5723b6d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a782a126-30f7-4f8b-9e3c-259c7dd4997f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11056',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0d2da485-32db-4727-9a7c-7febf59d04ee',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a782a126-30f7-4f8b-9e3c-259c7dd4997f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020249Z:a782a126-30f7-4f8b-9e3c-259c7dd4997f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '95b44e6d-0658-4d34-a93e-d371513bf66d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11055',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '54cceb8f-6252-4dae-8b58-4bc9eb0006da',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '95b44e6d-0658-4d34-a93e-d371513bf66d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020249Z:95b44e6d-0658-4d34-a93e-d371513bf66d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '85ca52a8-6994-4e6b-960c-7773dbd132e7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11054',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c5cee611-81e8-4c40-ad6b-b1787cd6a42c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '85ca52a8-6994-4e6b-960c-7773dbd132e7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020250Z:85ca52a8-6994-4e6b-960c-7773dbd132e7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6c4e8092-4a60-4426-9d99-4e9214ada211',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11053',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f61c6b95-ed9a-4316-affd-0b36393743e5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6c4e8092-4a60-4426-9d99-4e9214ada211',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020250Z:6c4e8092-4a60-4426-9d99-4e9214ada211',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '811870bf-16a6-4303-a388-13fb2234efe4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11052',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ac5d596f-047e-41b0-92b8-a56f8f1ef515',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '811870bf-16a6-4303-a388-13fb2234efe4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020250Z:811870bf-16a6-4303-a388-13fb2234efe4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '837499ab-171e-4a9c-8c65-2719dc569fb5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11051',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bad1e4c6-39cb-47a1-ba28-5bf1c8761a5f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '837499ab-171e-4a9c-8c65-2719dc569fb5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020251Z:837499ab-171e-4a9c-8c65-2719dc569fb5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:50 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '011ec63d-e690-4076-a50d-be6ced21a3ef',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11050',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9519cc95-bdbc-4ebf-a409-d3dd36f01867',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '011ec63d-e690-4076-a50d-be6ced21a3ef',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020251Z:011ec63d-e690-4076-a50d-be6ced21a3ef',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3cc64bfe-dc35-425d-8943-4992945b9f31',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11049',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1ea65c59-62b4-450c-a8c1-1b53e8a994a7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3cc64bfe-dc35-425d-8943-4992945b9f31',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020251Z:3cc64bfe-dc35-425d-8943-4992945b9f31',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9afd8834-a2a7-4945-94bc-1f8f6e010f84',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11048',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ca6c2e7a-cd77-4fce-9743-26190f60b495',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9afd8834-a2a7-4945-94bc-1f8f6e010f84',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020252Z:9afd8834-a2a7-4945-94bc-1f8f6e010f84',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7d985091-b9b0-45b3-9743-ded8ad04bbfd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11047',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4b3baedb-f97b-4cbd-8090-62cc78f537f5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7d985091-b9b0-45b3-9743-ded8ad04bbfd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020252Z:7d985091-b9b0-45b3-9743-ded8ad04bbfd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '116e3503-0055-4a70-908e-deaa009fa0dc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11046',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b4ab0e5b-bba7-48b1-b732-d932da3c4032',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '116e3503-0055-4a70-908e-deaa009fa0dc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020252Z:116e3503-0055-4a70-908e-deaa009fa0dc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '52623ba5-0843-4195-be19-d048e7c3873e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11045',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '25f5a6fa-3f75-476f-a91e-e5f4ca4d6dd6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '52623ba5-0843-4195-be19-d048e7c3873e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020253Z:52623ba5-0843-4195-be19-d048e7c3873e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5475cf81-729d-4dac-bb82-616772668459',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11044',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '453b66ef-9917-4137-b556-03034d8175bb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5475cf81-729d-4dac-bb82-616772668459',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020253Z:5475cf81-729d-4dac-bb82-616772668459',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '737a5840-c85c-4c1e-b35b-b761d0e18c5d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11043',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8b952cbd-a3f9-4497-b034-a6833f63324a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '737a5840-c85c-4c1e-b35b-b761d0e18c5d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020253Z:737a5840-c85c-4c1e-b35b-b761d0e18c5d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b754a326-3897-4bfc-848b-b224be191464',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11042',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c6460cc0-89c0-4668-975b-b13122e8a59e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b754a326-3897-4bfc-848b-b224be191464',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020254Z:b754a326-3897-4bfc-848b-b224be191464',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '73742f77-10b4-49a6-9894-461ffdb4347e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11041',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0e8463ae-6621-4f4c-a37b-c08fb541cebd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '73742f77-10b4-49a6-9894-461ffdb4347e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020254Z:73742f77-10b4-49a6-9894-461ffdb4347e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ccd7b323-7b49-4629-beea-6627ea1620f6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11040',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '361d34e0-bfda-45d7-b9df-47b0398a6c14',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ccd7b323-7b49-4629-beea-6627ea1620f6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020254Z:ccd7b323-7b49-4629-beea-6627ea1620f6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '78dd11b3-2fa7-4b25-9b79-f31dac5a0389',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11039',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a0b232d2-569c-4627-8dbb-c90513d1df1e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '78dd11b3-2fa7-4b25-9b79-f31dac5a0389',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020255Z:78dd11b3-2fa7-4b25-9b79-f31dac5a0389',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cc2a8719-4bff-4fa1-a63c-45561cefe854',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11038',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0485f8f1-6689-46e7-980d-e2c2243bde93',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cc2a8719-4bff-4fa1-a63c-45561cefe854',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020255Z:cc2a8719-4bff-4fa1-a63c-45561cefe854',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c964bd63-dad9-4f21-8606-43d7d2ada14b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11037',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd303774b-c94b-42a1-9af7-7481a0029026',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c964bd63-dad9-4f21-8606-43d7d2ada14b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020255Z:c964bd63-dad9-4f21-8606-43d7d2ada14b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '912c917d-db01-43c2-86c2-ab46e2b34bda',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11036',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '851f5fd4-f04c-4892-80a5-e7b522749ed4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '912c917d-db01-43c2-86c2-ab46e2b34bda',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020256Z:912c917d-db01-43c2-86c2-ab46e2b34bda',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '658639cf-27f3-4e59-9597-de280ab02821',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11035',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '97063175-c8e2-4f4a-b8e0-a6f243ca8f7d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '658639cf-27f3-4e59-9597-de280ab02821',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020256Z:658639cf-27f3-4e59-9597-de280ab02821',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '904bfbb8-1807-474f-8a3e-eaaa6d3d0a46',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11034',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1ce1cc6f-210b-4817-a694-58401afb5f0d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '904bfbb8-1807-474f-8a3e-eaaa6d3d0a46',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020256Z:904bfbb8-1807-474f-8a3e-eaaa6d3d0a46',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '455a61fa-938e-485d-91f1-3fb8633d52db',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11033',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b7c80d05-f72e-475e-9823-5ef223f7013b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '455a61fa-938e-485d-91f1-3fb8633d52db',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020257Z:455a61fa-938e-485d-91f1-3fb8633d52db',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '12c3e6b3-6dc2-4b54-bd3c-9fa2d54969b5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11032',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f204f451-5fca-4701-b1dd-d3a21c7f53c4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '12c3e6b3-6dc2-4b54-bd3c-9fa2d54969b5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020257Z:12c3e6b3-6dc2-4b54-bd3c-9fa2d54969b5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6fcbd761-87db-40ae-b7cb-91c9f9aea9a3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11031',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8242c64a-0be2-4a20-a046-d73167aee9a2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6fcbd761-87db-40ae-b7cb-91c9f9aea9a3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020257Z:6fcbd761-87db-40ae-b7cb-91c9f9aea9a3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '73791848-3174-4b13-ad50-a5af905d3949',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11030',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9e5a84d9-a00a-44e6-9c73-f67df3555f2b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '73791848-3174-4b13-ad50-a5af905d3949',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020258Z:73791848-3174-4b13-ad50-a5af905d3949',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '91cb3f15-5800-4ece-b7f8-b05b81df2b98',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11029',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a6495295-8a1a-4e55-ae1a-b79163c8c7ba',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '91cb3f15-5800-4ece-b7f8-b05b81df2b98',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020258Z:91cb3f15-5800-4ece-b7f8-b05b81df2b98',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5605f7d5-479f-4595-837d-52b5932a5fc9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11028',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cbd9b758-e2a0-4c57-9b03-956b5b0f088d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5605f7d5-479f-4595-837d-52b5932a5fc9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020258Z:5605f7d5-479f-4595-837d-52b5932a5fc9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b11d8eec-d71d-4d45-b71a-17c56b097bd6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11027',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '99b53f2c-8f91-491c-853a-1483c44d24d4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b11d8eec-d71d-4d45-b71a-17c56b097bd6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020259Z:b11d8eec-d71d-4d45-b71a-17c56b097bd6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1103806b-292c-4bf5-b42f-97f435929c17',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11026',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e7a8783b-16c3-41fe-a6d1-f51590115a99',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1103806b-292c-4bf5-b42f-97f435929c17',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020259Z:1103806b-292c-4bf5-b42f-97f435929c17',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f15d8cc2-a4db-4354-9f4b-e71c17981192',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11025',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bdec1b23-594b-47ff-a15d-ba7c0b90257b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f15d8cc2-a4db-4354-9f4b-e71c17981192',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020259Z:f15d8cc2-a4db-4354-9f4b-e71c17981192',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '49e175ce-7cfe-4661-bcff-c72fd6e010a6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11024',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7e05df57-a58f-4ce5-b00a-525503d3b00e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '49e175ce-7cfe-4661-bcff-c72fd6e010a6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020300Z:49e175ce-7cfe-4661-bcff-c72fd6e010a6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:02:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c4cfaa1f-ed75-43f7-a26a-c1018c3dc86c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11023',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0a3945ac-f118-4632-bda8-d4d43ec0ef9d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c4cfaa1f-ed75-43f7-a26a-c1018c3dc86c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020300Z:c4cfaa1f-ed75-43f7-a26a-c1018c3dc86c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'af3e45d1-abaa-48c3-a538-80d534ab58ca',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11022',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '531fd2af-27bf-49e3-975b-5f0a8cdde829',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'af3e45d1-abaa-48c3-a538-80d534ab58ca',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020301Z:af3e45d1-abaa-48c3-a538-80d534ab58ca',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '77e74cba-92e5-46ac-9558-abf0f7aaec2b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11021',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cac7cb97-937e-489c-a83a-4509bcbdd80e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '77e74cba-92e5-46ac-9558-abf0f7aaec2b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020301Z:77e74cba-92e5-46ac-9558-abf0f7aaec2b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e414d244-f3c6-45c0-898b-bcc20e929a40',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11020',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c7e90e63-ce15-4d63-8aef-580cff30fe7f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e414d244-f3c6-45c0-898b-bcc20e929a40',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020301Z:e414d244-f3c6-45c0-898b-bcc20e929a40',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0828c981-bfa3-41fe-95d4-d893728b18b1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11019',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '16bd7e58-f425-41c4-8ba2-f71dec8c0214',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0828c981-bfa3-41fe-95d4-d893728b18b1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020302Z:0828c981-bfa3-41fe-95d4-d893728b18b1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ae5d9658-a1c6-4d9e-a988-cdf8b6c787f0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11018',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '00f39459-36c1-4569-8b9c-bbd760443008',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ae5d9658-a1c6-4d9e-a988-cdf8b6c787f0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020302Z:ae5d9658-a1c6-4d9e-a988-cdf8b6c787f0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '908f41a7-d78d-4ed5-96d2-67230dbc0bd4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11017',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b277d5b0-4d54-4010-802f-881ca77d8c28',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '908f41a7-d78d-4ed5-96d2-67230dbc0bd4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020302Z:908f41a7-d78d-4ed5-96d2-67230dbc0bd4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0eb66fee-166c-4c79-a27f-71789c7f1381',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11016',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '660aab6d-3d69-482e-8dce-49ffda68ce3e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0eb66fee-166c-4c79-a27f-71789c7f1381',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020303Z:0eb66fee-166c-4c79-a27f-71789c7f1381',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9483aa8c-4c28-43b0-9b9e-c14bf3a1c3f4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11015',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1e6443ab-9149-4f88-8dd9-6376152030a3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9483aa8c-4c28-43b0-9b9e-c14bf3a1c3f4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020303Z:9483aa8c-4c28-43b0-9b9e-c14bf3a1c3f4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:02 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2e5d1d3f-f29a-4abd-886f-b5149fe8aa67',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11014',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '29fec85c-02ef-43ee-ae5f-a4abba85d751',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2e5d1d3f-f29a-4abd-886f-b5149fe8aa67',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020303Z:2e5d1d3f-f29a-4abd-886f-b5149fe8aa67',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4271884c-cd1f-4d85-8858-37801a3b38ab',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11013',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '93090e05-8c60-491a-936f-6238239c9ea6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4271884c-cd1f-4d85-8858-37801a3b38ab',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020304Z:4271884c-cd1f-4d85-8858-37801a3b38ab',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:03 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '564bae09-69b2-438d-9f62-9938b32c356d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11012',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '495f699c-501d-46a9-a74a-8dc8ca03958f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '564bae09-69b2-438d-9f62-9938b32c356d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020304Z:564bae09-69b2-438d-9f62-9938b32c356d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5f3c8f5e-1053-41b6-8925-c7d496645c1b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11011',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'aab05314-cf98-4e88-b73e-d3ae23d80a99',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5f3c8f5e-1053-41b6-8925-c7d496645c1b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020304Z:5f3c8f5e-1053-41b6-8925-c7d496645c1b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bbbc9398-ab99-4ec5-9c4c-89e651292e05',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11010',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8f119180-6dc5-40f4-b154-a7a1b62f67df',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bbbc9398-ab99-4ec5-9c4c-89e651292e05',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020305Z:bbbc9398-ab99-4ec5-9c4c-89e651292e05',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:04 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cca9056d-2926-4e4a-8ce3-bd86b068ad1f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11009',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '05932dde-eed9-4a5b-8b66-4f1237a7cd2c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cca9056d-2926-4e4a-8ce3-bd86b068ad1f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020305Z:cca9056d-2926-4e4a-8ce3-bd86b068ad1f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '78a4a40f-fc50-4849-9e20-a8433e927973',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11008',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3acaba84-b655-4940-a45f-b9034184a402',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '78a4a40f-fc50-4849-9e20-a8433e927973',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020305Z:78a4a40f-fc50-4849-9e20-a8433e927973',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0fef948d-0d5e-43a4-a309-964d2140d37a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11007',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dd5af189-4ac8-4c60-ad1d-71124f99c193',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0fef948d-0d5e-43a4-a309-964d2140d37a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020306Z:0fef948d-0d5e-43a4-a309-964d2140d37a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:05 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f64c88c5-8ab8-45d0-bdd5-d64a5f748dd5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11006',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '01d3f99e-31f1-42a5-ad9e-889e6f1e847a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f64c88c5-8ab8-45d0-bdd5-d64a5f748dd5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020306Z:f64c88c5-8ab8-45d0-bdd5-d64a5f748dd5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '95ebc42e-c9ad-420f-af30-c09cca77be6e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11005',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a1fba5e8-49d8-49bf-af74-18ef9d4bbd67',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '95ebc42e-c9ad-420f-af30-c09cca77be6e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020306Z:95ebc42e-c9ad-420f-af30-c09cca77be6e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3f114723-1d26-4c83-be22-1fddd4018ff2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11004',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e39497a9-6a48-4e88-9540-d5987a8cfcf9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3f114723-1d26-4c83-be22-1fddd4018ff2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020307Z:3f114723-1d26-4c83-be22-1fddd4018ff2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:06 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0cc9cc26-aa4b-40d6-abef-8c785f240551',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11003',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fc2b2a19-d767-4f20-8299-e3589be8fdb3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0cc9cc26-aa4b-40d6-abef-8c785f240551',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020307Z:0cc9cc26-aa4b-40d6-abef-8c785f240551',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3d8f09f3-92ef-4376-b820-2df19edbcb90',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11002',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e6f6f934-38db-4fd4-8b8b-f9f21cd2d807',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3d8f09f3-92ef-4376-b820-2df19edbcb90',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020307Z:3d8f09f3-92ef-4376-b820-2df19edbcb90',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '74a255f5-6cb3-4887-afe4-e974314b71fb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11001',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f68fae3a-0477-421a-a3f7-70120fd168b9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '74a255f5-6cb3-4887-afe4-e974314b71fb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020308Z:74a255f5-6cb3-4887-afe4-e974314b71fb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:07 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ab93d238-419a-44c8-8853-ce4b55f67981',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '11000',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7282737c-59d1-411f-8abb-72ffdacb39a1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ab93d238-419a-44c8-8853-ce4b55f67981',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020308Z:ab93d238-419a-44c8-8853-ce4b55f67981',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e1288c88-b60a-40f4-a6b4-fa4ef7b52a3e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10999',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd60be75c-bee7-49b1-b0a9-f129ced1639f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e1288c88-b60a-40f4-a6b4-fa4ef7b52a3e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020308Z:e1288c88-b60a-40f4-a6b4-fa4ef7b52a3e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0e9ed505-c587-4d9e-971f-6729e35b89aa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10998',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fe3a04a7-de4e-4d25-b853-9cfbf79f8c3d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0e9ed505-c587-4d9e-971f-6729e35b89aa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020309Z:0e9ed505-c587-4d9e-971f-6729e35b89aa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:08 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8a011d4b-a715-46b5-b695-307a3367a25d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10997',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c05f494e-5cd8-43b5-b128-429e148c863c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8a011d4b-a715-46b5-b695-307a3367a25d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020309Z:8a011d4b-a715-46b5-b695-307a3367a25d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ae48f725-38ba-4470-93dc-9d6810ec313d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10996',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a6491591-7fcd-46cb-b7a4-18fd060e9a82',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ae48f725-38ba-4470-93dc-9d6810ec313d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020309Z:ae48f725-38ba-4470-93dc-9d6810ec313d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a2bd70cf-9ab1-4081-b400-16527b19bf41',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10995',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c858238b-708f-4794-9155-1a62cf53824c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a2bd70cf-9ab1-4081-b400-16527b19bf41',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020310Z:a2bd70cf-9ab1-4081-b400-16527b19bf41',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:09 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '099598ac-abc0-4d19-89ef-e62c731f61e1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10994',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '74a8ad06-57fe-4b4a-af0d-2fd3c2a6f4ff',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '099598ac-abc0-4d19-89ef-e62c731f61e1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020310Z:099598ac-abc0-4d19-89ef-e62c731f61e1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a5d769bc-f401-41ab-9f5a-8100c5c52172',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10993',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '61a2a74e-c910-4940-b604-9ea9313ef7dc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a5d769bc-f401-41ab-9f5a-8100c5c52172',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020310Z:a5d769bc-f401-41ab-9f5a-8100c5c52172',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '97260090-f55d-4f24-9fa5-088787063297',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10992',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '507db6a8-d88b-49a1-a67f-0e822ce203d7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '97260090-f55d-4f24-9fa5-088787063297',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020311Z:97260090-f55d-4f24-9fa5-088787063297',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:10 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5dfa7cfc-9e40-4d9e-8004-52d3f35a39ff',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10991',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '89c35c88-d7c0-45e4-81bf-54dc43822744',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5dfa7cfc-9e40-4d9e-8004-52d3f35a39ff',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020311Z:5dfa7cfc-9e40-4d9e-8004-52d3f35a39ff',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '195c1e6a-bdd6-42de-8b41-9af73de6e4b0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10990',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '79955019-ecfd-45d4-863b-4fc6d57f478c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '195c1e6a-bdd6-42de-8b41-9af73de6e4b0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020312Z:195c1e6a-bdd6-42de-8b41-9af73de6e4b0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7ab9d778-b61d-4da9-92a9-5eac2848a405',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10989',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a2cc299a-3f73-4fb5-bc19-0abcd857dc54',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7ab9d778-b61d-4da9-92a9-5eac2848a405',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020312Z:7ab9d778-b61d-4da9-92a9-5eac2848a405',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:11 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4479a26c-3156-43e1-a2e7-fcafe76b0a92',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10988',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '796ae6e2-3c72-4428-aa95-f17967e62bbd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4479a26c-3156-43e1-a2e7-fcafe76b0a92',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020312Z:4479a26c-3156-43e1-a2e7-fcafe76b0a92',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f0861c38-3e2d-408c-888b-f6290170c219',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10987',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fa2b60cb-0930-4be7-8840-c88751b0af90',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f0861c38-3e2d-408c-888b-f6290170c219',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020313Z:f0861c38-3e2d-408c-888b-f6290170c219',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f664cdcf-404e-4263-8ec4-d773311d7c46',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10986',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9e6fd0d0-536c-4933-aead-08c986c30221',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f664cdcf-404e-4263-8ec4-d773311d7c46',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020313Z:f664cdcf-404e-4263-8ec4-d773311d7c46',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:12 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6caaa6ac-a0e1-4ece-ae8c-d8a558dffa9d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10985',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f687eb4b-1a62-464f-bc36-d7cc86ffb997',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6caaa6ac-a0e1-4ece-ae8c-d8a558dffa9d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020313Z:6caaa6ac-a0e1-4ece-ae8c-d8a558dffa9d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6037efb5-eed0-41a1-b75e-2aac3c7dd820',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10984',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'da4a4771-e51e-48aa-be92-1257937056d9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6037efb5-eed0-41a1-b75e-2aac3c7dd820',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020314Z:6037efb5-eed0-41a1-b75e-2aac3c7dd820',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd2036637-5bb2-401d-bcf2-4dac9d91a2d0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10983',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6cb64675-a8b7-45dd-adc8-7d1d739a590c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd2036637-5bb2-401d-bcf2-4dac9d91a2d0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020314Z:d2036637-5bb2-401d-bcf2-4dac9d91a2d0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:13 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2a6f45d6-30a7-494b-806c-7eadec59d97d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10982',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '08b05e21-810f-4618-94ba-3e8a1df82836',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2a6f45d6-30a7-494b-806c-7eadec59d97d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020315Z:2a6f45d6-30a7-494b-806c-7eadec59d97d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd9b58a1f-9426-4313-956a-2ee8f785b935',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10981',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a255ecec-4a80-4b83-8d45-a9e6427b8d52',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd9b58a1f-9426-4313-956a-2ee8f785b935',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020315Z:d9b58a1f-9426-4313-956a-2ee8f785b935',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9d59df11-844e-4c05-a0a7-89100371301b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10980',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6d125905-45e0-48d2-bf8c-53b623ca497a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9d59df11-844e-4c05-a0a7-89100371301b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020315Z:9d59df11-844e-4c05-a0a7-89100371301b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b5ecc1e7-53ea-4d89-9e96-f9f1688a0191',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10979',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ba8b8742-1343-4fe5-b72e-897c86d27d01',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b5ecc1e7-53ea-4d89-9e96-f9f1688a0191',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020316Z:b5ecc1e7-53ea-4d89-9e96-f9f1688a0191',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '433db7be-c56b-466f-9fc0-21f60b9bce9d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10978',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c69a1021-4ea0-4b3a-beb7-1e3f2f186134',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '433db7be-c56b-466f-9fc0-21f60b9bce9d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020316Z:433db7be-c56b-466f-9fc0-21f60b9bce9d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f33add8c-f056-4c82-8770-cbc4f504eff6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10977',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ab0ef27e-a171-4de8-bf87-a72c0b1a5bc4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f33add8c-f056-4c82-8770-cbc4f504eff6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020316Z:f33add8c-f056-4c82-8770-cbc4f504eff6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '696cd3b3-bf38-45aa-bc94-be5cad0a545f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10976',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0fe005ad-ccd0-41cf-830c-9c23548a7bb2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '696cd3b3-bf38-45aa-bc94-be5cad0a545f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020317Z:696cd3b3-bf38-45aa-bc94-be5cad0a545f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4508d3a3-2bb2-4748-8841-0417969a985e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10975',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3e45f257-870c-41a1-9a7c-f2c181973eb3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4508d3a3-2bb2-4748-8841-0417969a985e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020317Z:4508d3a3-2bb2-4748-8841-0417969a985e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ed67b4d9-ee2b-46ea-8763-df624b447a11',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10974',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '47fb5694-ff23-4fb1-9bb6-e35ac9649763',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ed67b4d9-ee2b-46ea-8763-df624b447a11',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020317Z:ed67b4d9-ee2b-46ea-8763-df624b447a11',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3c66ef54-a467-4520-b6dc-9dc3124bdfb5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10973',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1dd5151e-16cc-445d-aa28-dda2408cc321',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3c66ef54-a467-4520-b6dc-9dc3124bdfb5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020318Z:3c66ef54-a467-4520-b6dc-9dc3124bdfb5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ab2bfb86-7c31-42c4-888e-358ac3255bc4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10972',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1fe9b0a6-4891-4e76-808a-db3645a8a10e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ab2bfb86-7c31-42c4-888e-358ac3255bc4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020318Z:ab2bfb86-7c31-42c4-888e-358ac3255bc4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '625ab8d0-4567-4f87-974e-06a0b0109846',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10971',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3902ee4f-0dd0-412c-b02b-11c62ae58ce9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '625ab8d0-4567-4f87-974e-06a0b0109846',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020319Z:625ab8d0-4567-4f87-974e-06a0b0109846',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9759ab9b-a811-4dc8-8e3b-91cf399ec2f4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10970',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '98eadbb3-105f-43aa-89e3-a7da660fe9d7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9759ab9b-a811-4dc8-8e3b-91cf399ec2f4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020319Z:9759ab9b-a811-4dc8-8e3b-91cf399ec2f4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1e459f6a-f40e-43a0-bb61-85a179fa2bc3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10969',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '00dc11e0-7fbd-4d13-ad15-332f5c823ede',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1e459f6a-f40e-43a0-bb61-85a179fa2bc3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020319Z:1e459f6a-f40e-43a0-bb61-85a179fa2bc3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b72572cd-10f0-4cb0-a023-7fcd43e8b517',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10968',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '75c1081f-f652-4834-baeb-b64790c7af0f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b72572cd-10f0-4cb0-a023-7fcd43e8b517',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020320Z:b72572cd-10f0-4cb0-a023-7fcd43e8b517',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7522135f-3c4f-4c07-838b-9be757f6dd57',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10967',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '60dcac02-399d-421f-a106-6f313947b860',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7522135f-3c4f-4c07-838b-9be757f6dd57',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020320Z:7522135f-3c4f-4c07-838b-9be757f6dd57',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c30c2e3f-44b4-4fb1-91ae-9e886349bce1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10966',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1715e0b1-1539-42fe-9626-61f721f22691',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c30c2e3f-44b4-4fb1-91ae-9e886349bce1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020320Z:c30c2e3f-44b4-4fb1-91ae-9e886349bce1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '67bc45f1-7901-4166-acda-e617206b97d2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10965',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '18be3238-eb83-4911-be30-144a6dfda248',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '67bc45f1-7901-4166-acda-e617206b97d2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020321Z:67bc45f1-7901-4166-acda-e617206b97d2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5a3c7778-0eed-451d-a787-14058f6d2783',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10964',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '08b2c27e-37a6-4012-830e-73e7dd26086f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5a3c7778-0eed-451d-a787-14058f6d2783',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020321Z:5a3c7778-0eed-451d-a787-14058f6d2783',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e4be3095-fdf1-4366-b038-f353cb067fdd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10963',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a85bbb1c-1994-4568-b4d5-ca244cce1826',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e4be3095-fdf1-4366-b038-f353cb067fdd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020322Z:e4be3095-fdf1-4366-b038-f353cb067fdd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ff1f5bd5-b187-4366-b6bd-d1437739e498',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10962',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '01b2200b-739b-44a9-886e-cfe4e59ec1c0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ff1f5bd5-b187-4366-b6bd-d1437739e498',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020322Z:ff1f5bd5-b187-4366-b6bd-d1437739e498',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '22c71265-cd85-4b06-9601-c76afbd5af0c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10961',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cf49d65c-784d-4d3f-b083-2998d4ce5530',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '22c71265-cd85-4b06-9601-c76afbd5af0c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020322Z:22c71265-cd85-4b06-9601-c76afbd5af0c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '229dede3-d11a-4782-92b9-8cfd721ce510',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10960',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e384341e-7a7a-4ad2-9890-e3eb50090aaa',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '229dede3-d11a-4782-92b9-8cfd721ce510',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020323Z:229dede3-d11a-4782-92b9-8cfd721ce510',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '07d01024-9748-46af-a5b5-7e49d0835c98',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10959',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd2bf4231-0345-46d1-a31a-659589034ff8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '07d01024-9748-46af-a5b5-7e49d0835c98',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020323Z:07d01024-9748-46af-a5b5-7e49d0835c98',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3d980a1b-771e-4df9-95fb-2ccdfd111fc6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10958',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '046440e1-40ba-454e-99f9-dbcfe6e4ecfc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3d980a1b-771e-4df9-95fb-2ccdfd111fc6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020323Z:3d980a1b-771e-4df9-95fb-2ccdfd111fc6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '506a103b-840b-43e7-8819-d27d0fe4857a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10957',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ce60db85-767d-41e0-84eb-47944f0c8cc1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '506a103b-840b-43e7-8819-d27d0fe4857a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020324Z:506a103b-840b-43e7-8819-d27d0fe4857a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd6f3c019-9476-46ae-b4a8-c123c4130916',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10956',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6062ceb9-5ba3-4962-9a8a-abb51a5fb14f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd6f3c019-9476-46ae-b4a8-c123c4130916',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020324Z:d6f3c019-9476-46ae-b4a8-c123c4130916',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b5afdfaf-37c2-4ed5-9261-66cb2d27fff7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10955',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0f2e525c-6f30-4ada-8578-e71219b6c8b7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b5afdfaf-37c2-4ed5-9261-66cb2d27fff7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020324Z:b5afdfaf-37c2-4ed5-9261-66cb2d27fff7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '73f74a33-75c7-40da-b081-8b92dc35a110',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10954',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '83b0a082-85f3-4fc4-9ed0-9efda287a4b1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '73f74a33-75c7-40da-b081-8b92dc35a110',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020325Z:73f74a33-75c7-40da-b081-8b92dc35a110',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '14a2ac5f-a798-45a3-860f-d6acdf1910df',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10953',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd5a26e6e-85d8-4d0b-98c8-d6d0da9d4367',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '14a2ac5f-a798-45a3-860f-d6acdf1910df',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020325Z:14a2ac5f-a798-45a3-860f-d6acdf1910df',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c1d87aba-85b1-448b-b990-404ffdade0b6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10952',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '844104f6-3633-4a60-9382-50e52c62663a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c1d87aba-85b1-448b-b990-404ffdade0b6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020325Z:c1d87aba-85b1-448b-b990-404ffdade0b6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dbcdde1e-bd15-4485-b7ee-ba3aad2bc986',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10951',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '556f555d-03c7-4a46-80b7-46de9797f4a7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dbcdde1e-bd15-4485-b7ee-ba3aad2bc986',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020326Z:dbcdde1e-bd15-4485-b7ee-ba3aad2bc986',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'aef51358-588f-438f-82b3-84dedc6968da',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10950',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '953536c5-802e-4400-bcdf-341e5f9b9f12',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'aef51358-588f-438f-82b3-84dedc6968da',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020326Z:aef51358-588f-438f-82b3-84dedc6968da',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b076f389-328d-4e88-8edc-596e56c365ff',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10949',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '01846435-57ca-4787-90c7-2491ed78f671',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b076f389-328d-4e88-8edc-596e56c365ff',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020327Z:b076f389-328d-4e88-8edc-596e56c365ff',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e92e11ae-e946-430b-b775-07387a4d0069',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10948',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ecdbbd7b-cabb-4044-8f80-8b558aa897b7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e92e11ae-e946-430b-b775-07387a4d0069',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020327Z:e92e11ae-e946-430b-b775-07387a4d0069',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '45c4b1a1-ebcc-461f-8e88-7da4a4b09e9d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10947',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6162133e-48ac-446f-919c-76eaefb2de09',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '45c4b1a1-ebcc-461f-8e88-7da4a4b09e9d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020327Z:45c4b1a1-ebcc-461f-8e88-7da4a4b09e9d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c7277b21-c1e3-42f7-9410-734877a9607f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10946',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0f067097-60b6-4107-aced-bdbfaa631897',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c7277b21-c1e3-42f7-9410-734877a9607f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020328Z:c7277b21-c1e3-42f7-9410-734877a9607f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e84e8f2b-9a32-4c96-9cdd-fa34d3cacf56',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10945',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '69773492-11a1-4f51-9614-75bd6a50f482',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e84e8f2b-9a32-4c96-9cdd-fa34d3cacf56',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020328Z:e84e8f2b-9a32-4c96-9cdd-fa34d3cacf56',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '24d2f66a-7dc1-41ce-9ada-69b1f6ded3a5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10944',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e109f9d5-8436-496f-b32f-290c0906c502',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '24d2f66a-7dc1-41ce-9ada-69b1f6ded3a5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020329Z:24d2f66a-7dc1-41ce-9ada-69b1f6ded3a5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '714a8231-26f5-48fd-ad93-557a4ad0c0f9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10943',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'eafbfeb4-2772-4563-b976-428b33cae4c6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '714a8231-26f5-48fd-ad93-557a4ad0c0f9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020329Z:714a8231-26f5-48fd-ad93-557a4ad0c0f9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fb93e61e-042c-4efa-bd63-da7d0e476323',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10942',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9851f3a6-47d3-455a-a30c-5bd520a393a9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fb93e61e-042c-4efa-bd63-da7d0e476323',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020329Z:fb93e61e-042c-4efa-bd63-da7d0e476323',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '45401945-a95d-4ac2-bba4-ac3a81c130d4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10941',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a5cc31f4-0fcc-4a8e-b8a9-9e495a333e23',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '45401945-a95d-4ac2-bba4-ac3a81c130d4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020330Z:45401945-a95d-4ac2-bba4-ac3a81c130d4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '644046d3-e341-4e33-9297-99ba2d911563',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10940',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0f17740e-41ec-49d8-a185-7defaf4073c4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '644046d3-e341-4e33-9297-99ba2d911563',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020330Z:644046d3-e341-4e33-9297-99ba2d911563',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '491841d1-f2fa-4f4a-9ee3-e7aa1679141d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10939',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4bc279bf-be03-4ca6-a9a5-be9d519e840c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '491841d1-f2fa-4f4a-9ee3-e7aa1679141d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020330Z:491841d1-f2fa-4f4a-9ee3-e7aa1679141d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a3dee7ef-cbef-42a9-a070-1c0ea4e5b3ca',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10938',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f1782c6c-99a0-4bf9-ab9e-b93dad4738a1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a3dee7ef-cbef-42a9-a070-1c0ea4e5b3ca',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020331Z:a3dee7ef-cbef-42a9-a070-1c0ea4e5b3ca',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '13a76c73-c3a0-428a-a281-ed2597be3acc',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10937',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3b640ae0-cabe-4eeb-9bff-54ec578170bf',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '13a76c73-c3a0-428a-a281-ed2597be3acc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020331Z:13a76c73-c3a0-428a-a281-ed2597be3acc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '51430582-398f-441d-ace1-3dbe0fc0e90f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10936',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e971eb74-7760-4930-9852-fa812053ec85',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '51430582-398f-441d-ace1-3dbe0fc0e90f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020332Z:51430582-398f-441d-ace1-3dbe0fc0e90f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd265ef8b-c1ee-4d2a-8c06-e5bafd21156b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10935',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '26cb9e24-520d-4974-84e0-7b9fef33a6b7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd265ef8b-c1ee-4d2a-8c06-e5bafd21156b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020332Z:d265ef8b-c1ee-4d2a-8c06-e5bafd21156b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a075b96d-53ad-421e-aba8-433cca942072',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10934',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f9a90bfe-222f-4ea3-ae05-8d780285eee3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a075b96d-53ad-421e-aba8-433cca942072',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020332Z:a075b96d-53ad-421e-aba8-433cca942072',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '569789fa-4e0b-480a-8999-81e2a893f2c1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10933',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7771a78d-e0da-4532-b4a1-6e764f028dcd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '569789fa-4e0b-480a-8999-81e2a893f2c1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020333Z:569789fa-4e0b-480a-8999-81e2a893f2c1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1028797f-6b29-4f15-b4d8-5fac81031fac',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10932',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c63b3f83-3696-4290-9ae2-36c6f244178e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1028797f-6b29-4f15-b4d8-5fac81031fac',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020333Z:1028797f-6b29-4f15-b4d8-5fac81031fac',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2e935b20-16ee-43c0-a738-48484036af7e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10931',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8df8228e-2e6e-4fbd-8028-7907ddd4bb71',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2e935b20-16ee-43c0-a738-48484036af7e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020333Z:2e935b20-16ee-43c0-a738-48484036af7e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '31200e85-8ed2-4a40-833b-bdf7e6d5a248',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10930',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9683b912-8a36-44bb-925f-bc8a49952a85',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '31200e85-8ed2-4a40-833b-bdf7e6d5a248',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020334Z:31200e85-8ed2-4a40-833b-bdf7e6d5a248',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b8982dc5-f0bb-4626-af30-a59d8150c938',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10929',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '95b80c5e-31b2-4cd4-b8cf-74a48604e386',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b8982dc5-f0bb-4626-af30-a59d8150c938',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020334Z:b8982dc5-f0bb-4626-af30-a59d8150c938',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9ac2aac7-b19b-4d85-abaf-770f2555549d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10928',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '86449844-fe57-4a0d-9e7d-8b72ac90d641',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9ac2aac7-b19b-4d85-abaf-770f2555549d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020334Z:9ac2aac7-b19b-4d85-abaf-770f2555549d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd383d38b-2dc5-4258-8df2-94282a4c8be8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10927',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0af33b5c-5a3d-4ed7-a40d-7affe6511b12',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd383d38b-2dc5-4258-8df2-94282a4c8be8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020335Z:d383d38b-2dc5-4258-8df2-94282a4c8be8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1deeefcb-06f0-4ca5-badc-c8382bcf301b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10926',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cefb03ea-4441-4fc8-9ee5-13384e50fa86',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1deeefcb-06f0-4ca5-badc-c8382bcf301b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020335Z:1deeefcb-06f0-4ca5-badc-c8382bcf301b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '20a17a6e-432a-4fc3-81ee-d84232a35d37',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10925',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '14986242-3058-42a7-a2b7-2b2d8fe12a0c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '20a17a6e-432a-4fc3-81ee-d84232a35d37',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020335Z:20a17a6e-432a-4fc3-81ee-d84232a35d37',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '215a2098-9174-4baa-accc-83f73aa98fab',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10924',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5dd266a0-0796-46c5-8357-ccc24fdadf19',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '215a2098-9174-4baa-accc-83f73aa98fab',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020336Z:215a2098-9174-4baa-accc-83f73aa98fab',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9b5a32c4-7001-4c0d-94f5-b56168fdf6aa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10923',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '284362c6-1c3b-416e-8315-8922a5042134',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9b5a32c4-7001-4c0d-94f5-b56168fdf6aa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020336Z:9b5a32c4-7001-4c0d-94f5-b56168fdf6aa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '701da8c9-c8f7-4db1-b6cb-4c882f008d1e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10922',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5d02b486-a3bd-4bbf-a4e4-53720ba14145',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '701da8c9-c8f7-4db1-b6cb-4c882f008d1e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020336Z:701da8c9-c8f7-4db1-b6cb-4c882f008d1e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cbfd940b-8f44-4efb-a933-9822ec638419',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10921',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '45bbd5c5-9109-44b5-b6ac-3af27345dd20',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cbfd940b-8f44-4efb-a933-9822ec638419',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020337Z:cbfd940b-8f44-4efb-a933-9822ec638419',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '788dee16-5c30-4e3f-8793-7e276605b73b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10920',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c2bb7406-2b15-4b46-b001-474fa9a1b005',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '788dee16-5c30-4e3f-8793-7e276605b73b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020337Z:788dee16-5c30-4e3f-8793-7e276605b73b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '174ddf73-f9a0-4568-871c-d29829fb844f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10919',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4916b6bb-dec7-44d0-9ed5-8801d7e2bfac',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '174ddf73-f9a0-4568-871c-d29829fb844f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020337Z:174ddf73-f9a0-4568-871c-d29829fb844f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ae9f0b19-9033-41b2-bef2-e6335fc5576d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10918',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '911aea78-5b97-4219-a998-9d26317f5a16',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ae9f0b19-9033-41b2-bef2-e6335fc5576d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020338Z:ae9f0b19-9033-41b2-bef2-e6335fc5576d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '59a4b959-7003-494f-80c1-8e6541a29a22',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10917',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '84f124d2-f5f7-4744-896f-456fd2a10ec6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '59a4b959-7003-494f-80c1-8e6541a29a22',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020338Z:59a4b959-7003-494f-80c1-8e6541a29a22',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '16f498c7-1d78-445e-b4a5-fa1b879ffe80',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10916',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1537cdc7-57db-4f54-a839-e12324bb25cd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '16f498c7-1d78-445e-b4a5-fa1b879ffe80',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020338Z:16f498c7-1d78-445e-b4a5-fa1b879ffe80',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd3440197-1a67-4845-bcdd-b649e2df64aa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10915',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2b89c8cd-1e79-4bec-ae3c-af19f5363cd9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd3440197-1a67-4845-bcdd-b649e2df64aa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020339Z:d3440197-1a67-4845-bcdd-b649e2df64aa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0922ff9c-d4fc-400a-8600-f24280198ab6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10914',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5c17e58a-a378-4379-b28f-80b7b8b5d30c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0922ff9c-d4fc-400a-8600-f24280198ab6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020339Z:0922ff9c-d4fc-400a-8600-f24280198ab6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '897a6d49-eae2-43c8-8a15-5cc39dfcfaed',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10913',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '17ce93c5-55ff-4097-872a-39506abf9886',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '897a6d49-eae2-43c8-8a15-5cc39dfcfaed',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020340Z:897a6d49-eae2-43c8-8a15-5cc39dfcfaed',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4a84a0cb-25e7-450a-96c3-81c736804ca5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10912',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'aa4bfbcf-d677-4b76-8553-e378d0daeaa9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4a84a0cb-25e7-450a-96c3-81c736804ca5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020340Z:4a84a0cb-25e7-450a-96c3-81c736804ca5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2cc96de2-09d7-487c-9205-9740f37511e1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10911',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '106192ff-9738-4c95-b75d-220013c7c0b0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2cc96de2-09d7-487c-9205-9740f37511e1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020340Z:2cc96de2-09d7-487c-9205-9740f37511e1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'cca51977-b4a3-4550-9e85-b23c60469602',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10910',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '175a9d71-d2a5-4aac-8b10-4006e967518d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'cca51977-b4a3-4550-9e85-b23c60469602',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020341Z:cca51977-b4a3-4550-9e85-b23c60469602',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '389c9202-77ec-471e-9d55-4e0e00bd08b7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10909',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bcb5602a-dc01-443b-b71f-c6be32866062',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '389c9202-77ec-471e-9d55-4e0e00bd08b7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020341Z:389c9202-77ec-471e-9d55-4e0e00bd08b7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '35b5a6d8-29e0-41a5-9ef0-1918a8cc7ce4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10908',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '37ad0bc6-4f1d-4ced-ab2d-d9b2555e7b10',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '35b5a6d8-29e0-41a5-9ef0-1918a8cc7ce4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020342Z:35b5a6d8-29e0-41a5-9ef0-1918a8cc7ce4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8ed8f286-0782-44a3-a4bb-7996260f7129',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10907',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '779b3eee-c82c-4daa-8e5d-59f75a2c07ac',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8ed8f286-0782-44a3-a4bb-7996260f7129',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020342Z:8ed8f286-0782-44a3-a4bb-7996260f7129',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e1434d8f-a8c1-4d27-befc-63ca8e5f7d14',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10906',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'eaca3127-1627-4afa-b4b8-2d809538f224',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e1434d8f-a8c1-4d27-befc-63ca8e5f7d14',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020342Z:e1434d8f-a8c1-4d27-befc-63ca8e5f7d14',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd7af4ce7-3144-40b6-a081-fc525ac45c9a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10905',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9bfc07d3-937f-4530-8a8c-bc76b0e1c7de',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd7af4ce7-3144-40b6-a081-fc525ac45c9a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020343Z:d7af4ce7-3144-40b6-a081-fc525ac45c9a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bf99c799-22dc-45f0-ae16-ac8f46b2b262',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10904',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd7ae77de-62ec-472e-bf85-bb0b33d31307',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bf99c799-22dc-45f0-ae16-ac8f46b2b262',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020343Z:bf99c799-22dc-45f0-ae16-ac8f46b2b262',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b57f2954-0c2a-4e4f-89a5-ef3ab9b9083d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10903',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dcd5c860-65f8-4824-a7fe-8ffbb1450010',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b57f2954-0c2a-4e4f-89a5-ef3ab9b9083d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020343Z:b57f2954-0c2a-4e4f-89a5-ef3ab9b9083d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '33656b00-f6d1-4717-a84e-dc27d21e995c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10902',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '42adaa63-11b5-4f08-a0e7-f1e748b6d0a5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '33656b00-f6d1-4717-a84e-dc27d21e995c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020344Z:33656b00-f6d1-4717-a84e-dc27d21e995c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b323ed3-ad64-4d23-b4d7-345cbb347a77',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10901',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6e236fcc-f6d7-4ddf-95bb-e2805c4bec43',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b323ed3-ad64-4d23-b4d7-345cbb347a77',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020344Z:2b323ed3-ad64-4d23-b4d7-345cbb347a77',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd6393b08-a65a-4153-abf9-f1db6a4d0781',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10900',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a21eb9ae-96ce-48c5-a9e0-515f5daee81b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd6393b08-a65a-4153-abf9-f1db6a4d0781',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020344Z:d6393b08-a65a-4153-abf9-f1db6a4d0781',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2f278b9f-be0a-4aa4-97c0-02517abfa39c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10899',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '309c9fd9-3d3f-44f0-b065-44283507ac42',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2f278b9f-be0a-4aa4-97c0-02517abfa39c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020345Z:2f278b9f-be0a-4aa4-97c0-02517abfa39c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd883ce5a-dcc3-492d-abdd-651d619e7d87',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10898',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b5c7f5e6-dca7-4e6c-aebf-4592076376de',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd883ce5a-dcc3-492d-abdd-651d619e7d87',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020345Z:d883ce5a-dcc3-492d-abdd-651d619e7d87',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '79d3a5da-77ab-44ea-b176-52bcd1b9e8ec',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10897',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '37780291-a64e-45af-9e10-c26a0fccab57',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '79d3a5da-77ab-44ea-b176-52bcd1b9e8ec',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020345Z:79d3a5da-77ab-44ea-b176-52bcd1b9e8ec',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '226e5b07-5fbe-4f06-a078-053af02e68e8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10896',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4072139c-dc5e-4e16-a787-3077d27e6fee',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '226e5b07-5fbe-4f06-a078-053af02e68e8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020346Z:226e5b07-5fbe-4f06-a078-053af02e68e8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'db9c33c0-cc37-45ae-824a-3a1f653fcee2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10895',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8e701f17-ceab-48d7-9401-d843595b5ee8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'db9c33c0-cc37-45ae-824a-3a1f653fcee2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020346Z:db9c33c0-cc37-45ae-824a-3a1f653fcee2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e5195df5-b081-4a58-acd7-8696a9ee2145',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10894',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a92a68a5-cfa8-4214-abb5-7cf0b33e964d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e5195df5-b081-4a58-acd7-8696a9ee2145',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020346Z:e5195df5-b081-4a58-acd7-8696a9ee2145',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4cb8c1d5-e0e2-4691-85df-4c25430d1a55',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10893',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0d8cd2cb-fa96-4272-88f1-8b4a83404df0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4cb8c1d5-e0e2-4691-85df-4c25430d1a55',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020347Z:4cb8c1d5-e0e2-4691-85df-4c25430d1a55',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0d8befd7-cdbf-4d67-ba47-2ec058b90ae5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10892',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '35265ac5-cf61-48b6-b0bd-a49632b12480',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0d8befd7-cdbf-4d67-ba47-2ec058b90ae5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020347Z:0d8befd7-cdbf-4d67-ba47-2ec058b90ae5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '12b8c9f8-dd5e-4956-ad40-21bf63a8bf5a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10891',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f66c55ca-44c1-41d9-a3c4-b66e23743f39',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '12b8c9f8-dd5e-4956-ad40-21bf63a8bf5a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020347Z:12b8c9f8-dd5e-4956-ad40-21bf63a8bf5a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '70171faa-b1b6-4e52-b5d4-9d1de29d2c7a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10890',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '28150108-4e7b-4829-9ee4-cbcd58c887bd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '70171faa-b1b6-4e52-b5d4-9d1de29d2c7a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020348Z:70171faa-b1b6-4e52-b5d4-9d1de29d2c7a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5742863c-ea47-4751-9231-cf83edf3fcdd',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10889',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e707be9a-34ec-4a99-8ad7-ddc8ef7d834e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5742863c-ea47-4751-9231-cf83edf3fcdd',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020348Z:5742863c-ea47-4751-9231-cf83edf3fcdd',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e03d8837-d63d-48a2-99c4-41a89d9b4feb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10888',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5d2b5ed8-a67c-4e97-8b12-1d496c546f19',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e03d8837-d63d-48a2-99c4-41a89d9b4feb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020348Z:e03d8837-d63d-48a2-99c4-41a89d9b4feb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '54283b46-6daa-402a-a467-cb4fbd31d658',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10887',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6e60d6d4-b561-487e-ac90-d66c6ec2ab79',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '54283b46-6daa-402a-a467-cb4fbd31d658',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020349Z:54283b46-6daa-402a-a467-cb4fbd31d658',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '85b7c822-4b29-42bf-b85b-dbdb9de00056',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10886',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '49f3fefd-a306-496a-8485-2cfd7fbc4bd0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '85b7c822-4b29-42bf-b85b-dbdb9de00056',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020349Z:85b7c822-4b29-42bf-b85b-dbdb9de00056',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '757c11ff-e522-4ede-866c-59b27d461eeb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10885',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6e40038c-14d6-4a9e-aa58-1fbc6423dcfc',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '757c11ff-e522-4ede-866c-59b27d461eeb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020349Z:757c11ff-e522-4ede-866c-59b27d461eeb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fbff3740-e536-404f-b298-fe8cefb19e12',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10884',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3527519e-90d0-4db7-8ddd-21aa49bca7e0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fbff3740-e536-404f-b298-fe8cefb19e12',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020350Z:fbff3740-e536-404f-b298-fe8cefb19e12',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5a2f97c5f2423eaadb370543d9dbd9dbdddeddd9de7bf06667efd1cecea3bd9df1c39d7bf776ef7ffa531ffd","92ff071cb4fe393e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c227afde-9951-4d3d-a2ed-1fc21bfab593',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10883',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9d8b2202-af4a-4a94-90d4-d5e7e9258fa8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c227afde-9951-4d3d-a2ed-1fc21bfab593',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020350Z:c227afde-9951-4d3d-a2ed-1fc21bfab593',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/4ee01959-9477-4f52-b3b2-00edda5cac59')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f7f37c67f7e1fd87db0ff71f105ae7f7f7b627f7267bdb3b3bf96c96dd9f66d3fb0f3f1a7db4cc16390de996ad1bee94dabf5e4fa7793ecb67f261ddbe2918cedecedeeef6eecef6de83373b7b8f76761eeded8c1feedcbbb77bffd39fa2a6f972166f78efd1fd9df1bd877b0ff61eeeffd447bf","e4ff01d3b11b0769010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6f1a0558-1bc2-41bd-a1de-96b0abcb07d7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10882',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'be1b8b8e-87f6-45cf-90ec-78b28248005d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6f1a0558-1bc2-41bd-a1de-96b0abcb07d7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020350Z:6f1a0558-1bc2-41bd-a1de-96b0abcb07d7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:50 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_delete_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_delete_test.js
new file mode 100644
index 000000000000..786372558300
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_delete_test.js
@@ -0,0 +1,5647 @@
+let nock = require('nock');
+
+module.exports.hash = "f49fdefafac6cf2e1061d114af520be4";
+
+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',
+ 'e7e3df85-db65-4e20-b515-394cff6b0900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=Apl8fNkvKSdJjifKJdLG2zI; expires=Fri, 26-Nov-2021 02:04:13 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrU6p2lN3myHx37-6iAC0RPHVHKAzktti2b1mDKHUq7TR7mnB7UwEUELF_K51kO1dTxNt6QzOUFEXoBShD28NGWzG9KVXrGeJZkqF9yyRwD6BoIUIs0lrj_J8DLA8-k-zYGK6sejljeFxQlSySpjWwBSz1E9pY8sGDIh78FiW1_sUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:12 GMT',
+ 'Content-Length',
+ '980'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration')
+ .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [
+ 'Cache-Control',
+ 'max-age=86400, private',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'Access-Control-Allow-Origin',
+ '*',
+ 'Access-Control-Allow-Methods',
+ 'GET, OPTIONS',
+ 'P3P',
+ 'CP="DSP CUR OTPi IND OTRi ONL FIN"',
+ 'x-ms-request-id',
+ '61682844-3496-487a-99ec-6ec8acfd2300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=Av0U9L7xobJBsbSTXAtkTKU; expires=Fri, 26-Nov-2021 02:04:13 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrwbliv7yi2hfUZAMeytjpP_i1_nE6WDfEj4MzwFPmqBNYR_9dRHtA_e2n0Ij69Sl3C-4GYfe33YUswKIjQrL4zkOL8n97jG1KUdxs3xWpBZSqJywm4L_HVTQ3h7zFJQZZ8KEncHibqZqUIorJ52-1sJsU-ELYnvF66jGrE5ekkC0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:12 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=16776dff-6282-468c-8945-472b1d20c5cb&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',
+ '6b976584-20f0-4803-8579-93bae8782400',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR1 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=Ak__rqZGSuRHhfvLI0L4e0AWPr5BAQAAAJ2qCtkOAAAA; expires=Fri, 26-Nov-2021 02:04:13 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:12 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx')
+ .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.AppPlatform/locations/eastus/operationResults/e8e8176e-3a09-448c-bcee-c2976bf69f48/Spring/myservicexxx?api-version=2021-09-01-preview',
+ 'x-ms-ratelimit-remaining-subscription-deletes',
+ '14996',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9c79a229-b5ed-4b38-8912-749375c74142',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Azure-AsyncOperation',
+ 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48?api-version=2021-09-01-preview',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-request-id',
+ 'e41b184d-2cfb-4ac7-ac5f-ebfb9eb27ed2',
+ 'x-ms-correlation-request-id',
+ 'e41b184d-2cfb-4ac7-ac5f-ebfb9eb27ed2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020415Z:e41b184d-2cfb-4ac7-ac5f-ebfb9eb27ed2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:14 GMT',
+ 'Content-Length',
+ '0'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6fdea09c-5ae5-40a6-ad40-97e689585655',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10843',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6a4f31d9-91f7-4c51-84ea-caca5df91e3a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6fdea09c-5ae5-40a6-ad40-97e689585655',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020415Z:6fdea09c-5ae5-40a6-ad40-97e689585655',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7f0470f1-b5aa-4f16-a3d8-a3f8e1e259e6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10842',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c1d2c6c9-5190-46f6-a494-d775393b9582',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7f0470f1-b5aa-4f16-a3d8-a3f8e1e259e6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020415Z:7f0470f1-b5aa-4f16-a3d8-a3f8e1e259e6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:14 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7dba3be4-71f8-4e3f-b7a3-451ef690f3e9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10841',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a8cfd328-f09b-48e8-8878-00b260dd2415',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7dba3be4-71f8-4e3f-b7a3-451ef690f3e9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020416Z:7dba3be4-71f8-4e3f-b7a3-451ef690f3e9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '47fe243f-0f95-40bf-9d99-331cccbff238',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10840',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f5bd26dd-6ae4-4f4f-aba1-044e2a8692fb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '47fe243f-0f95-40bf-9d99-331cccbff238',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020416Z:47fe243f-0f95-40bf-9d99-331cccbff238',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '609c6a2a-caf5-4bda-b630-e183e97c566b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10839',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '20295fad-672d-4e27-a172-60ab31443c02',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '609c6a2a-caf5-4bda-b630-e183e97c566b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020416Z:609c6a2a-caf5-4bda-b630-e183e97c566b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:15 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '572455e5-c7d8-4f2d-a2b0-37864787adcf',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10838',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b6c1bb87-0759-4787-8900-614365fbbe51',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '572455e5-c7d8-4f2d-a2b0-37864787adcf',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020417Z:572455e5-c7d8-4f2d-a2b0-37864787adcf',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '65f1df20-3c38-404d-914a-be3f48a1e173',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10837',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1b82e88c-d1bf-4a17-b25a-9925f6cd9271',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '65f1df20-3c38-404d-914a-be3f48a1e173',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020417Z:65f1df20-3c38-404d-914a-be3f48a1e173',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:16 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b8f26ac1-cc46-411b-9d75-03b7d9c4e7b7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10836',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '24b273b4-e633-41c9-b506-13446d25258f',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b8f26ac1-cc46-411b-9d75-03b7d9c4e7b7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020417Z:b8f26ac1-cc46-411b-9d75-03b7d9c4e7b7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e136ed5d-17ed-4212-9819-de41d46ba5aa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10835',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2be4bb77-e961-4e94-9ba4-f1a354f6b554',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e136ed5d-17ed-4212-9819-de41d46ba5aa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020418Z:e136ed5d-17ed-4212-9819-de41d46ba5aa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '45c92174-785a-4857-b6a9-9451be1c080e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10834',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7558c10a-b1da-4439-84e3-77a48c8dfa8b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '45c92174-785a-4857-b6a9-9451be1c080e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020418Z:45c92174-785a-4857-b6a9-9451be1c080e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:17 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8a0d956e-0683-4ced-87e4-31325630b557',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10833',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3e5a1891-3d6b-41d8-8247-66f58e421ad0',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8a0d956e-0683-4ced-87e4-31325630b557',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020418Z:8a0d956e-0683-4ced-87e4-31325630b557',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dc309df2-51d9-42ce-b94a-013e8327bc2d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10832',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e539f0f3-5de1-4fa2-a819-4ae14f5b8493',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dc309df2-51d9-42ce-b94a-013e8327bc2d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020419Z:dc309df2-51d9-42ce-b94a-013e8327bc2d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:18 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3819469c-2b49-406a-a2c2-3a00663f744a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10831',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c6cf7c65-c9f5-4942-bc71-246ce031c7a3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3819469c-2b49-406a-a2c2-3a00663f744a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020420Z:3819469c-2b49-406a-a2c2-3a00663f744a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bfa893f2-11a3-4d88-a2d7-82d130567a42',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10830',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3a9196b3-5a01-4c54-bb91-49000e84f3dd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bfa893f2-11a3-4d88-a2d7-82d130567a42',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020420Z:bfa893f2-11a3-4d88-a2d7-82d130567a42',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:19 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a894b9ac-84a7-4d7b-a148-39b07bad0e77',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10829',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e2d34d86-c1d9-4535-9c5c-a490635e0f2e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a894b9ac-84a7-4d7b-a148-39b07bad0e77',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020420Z:a894b9ac-84a7-4d7b-a148-39b07bad0e77',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b7d1dbdb-9847-414c-a4ed-84135c9d4b07',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10828',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6f090d4a-5e77-4329-a106-cee24ea028df',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b7d1dbdb-9847-414c-a4ed-84135c9d4b07',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020421Z:b7d1dbdb-9847-414c-a4ed-84135c9d4b07',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '14a19978-086e-4912-93db-2e735e507fa9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10827',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b64c12f6-0105-4766-b197-8023102a9615',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '14a19978-086e-4912-93db-2e735e507fa9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020421Z:14a19978-086e-4912-93db-2e735e507fa9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:20 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c96985cc-024d-4ea4-913a-d22ea62b4143',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10826',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '70f90609-8ada-4eb7-95c4-3a99381009d1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c96985cc-024d-4ea4-913a-d22ea62b4143',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020422Z:c96985cc-024d-4ea4-913a-d22ea62b4143',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'fc00ea85-a71c-45c9-8b68-5ce0adc6b565',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10825',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '07d6b7f0-e97f-4835-b42d-e175d42c9e6b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'fc00ea85-a71c-45c9-8b68-5ce0adc6b565',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020422Z:fc00ea85-a71c-45c9-8b68-5ce0adc6b565',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e4e76e54-f3f4-4f4c-8759-d6a07a030f06',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10824',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '96741d09-ece2-42f0-8aab-703a857ee082',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e4e76e54-f3f4-4f4c-8759-d6a07a030f06',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020422Z:e4e76e54-f3f4-4f4c-8759-d6a07a030f06',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:21 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'be8b5f67-af9a-44ca-9e07-ef0bc6478789',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10823',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f214ba43-5984-4f4d-87e1-c8fb7fb3f773',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'be8b5f67-af9a-44ca-9e07-ef0bc6478789',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020423Z:be8b5f67-af9a-44ca-9e07-ef0bc6478789',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '245e03a9-7a6c-4204-874a-014c7ddbae70',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10822',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'aa066dee-ed9b-4133-b5d3-9060f165f302',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '245e03a9-7a6c-4204-874a-014c7ddbae70',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020423Z:245e03a9-7a6c-4204-874a-014c7ddbae70',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4c98f827-40f1-478b-9ff5-1a72608133bb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10821',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e706c823-d742-4c4e-aa50-8a023b191546',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4c98f827-40f1-478b-9ff5-1a72608133bb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020423Z:4c98f827-40f1-478b-9ff5-1a72608133bb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:22 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2f0f7f7a-162f-49e1-9df0-c76aafd87a77',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10820',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b15e6b00-f53f-472d-99f9-2f075aa5bcc8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2f0f7f7a-162f-49e1-9df0-c76aafd87a77',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020424Z:2f0f7f7a-162f-49e1-9df0-c76aafd87a77',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dad791b2-ba8c-444c-89df-cf8238e29d5d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10819',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '99cfc6d1-cd95-4844-bb46-4afc00350988',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dad791b2-ba8c-444c-89df-cf8238e29d5d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020424Z:dad791b2-ba8c-444c-89df-cf8238e29d5d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '89fc8853-06a4-45d8-9b8f-a2910ccc675e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10818',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3c1d501e-38b7-453a-ad98-5a4ade906f3a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '89fc8853-06a4-45d8-9b8f-a2910ccc675e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020424Z:89fc8853-06a4-45d8-9b8f-a2910ccc675e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:23 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f3e25a6e-28be-48cc-9bd2-625938be5c68',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10817',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '57e4352b-31eb-4ca2-8f01-947058765482',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f3e25a6e-28be-48cc-9bd2-625938be5c68',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020425Z:f3e25a6e-28be-48cc-9bd2-625938be5c68',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '1cbb043b-94fb-45f4-aad3-57ede43c0126',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10816',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9d526c53-077d-4012-a585-0f9435b615fb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '1cbb043b-94fb-45f4-aad3-57ede43c0126',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020425Z:1cbb043b-94fb-45f4-aad3-57ede43c0126',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:24 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '99563c30-87f9-47cf-9997-8c3ca42ea4f5',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10815',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a63ef172-b625-495a-b7a5-8f61751d1787',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '99563c30-87f9-47cf-9997-8c3ca42ea4f5',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020425Z:99563c30-87f9-47cf-9997-8c3ca42ea4f5',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3557e93a-fca0-4e30-885b-a5c76e8ad637',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10814',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '63b84dc0-19fe-4d25-bd5c-24e3f8efcd0b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3557e93a-fca0-4e30-885b-a5c76e8ad637',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020426Z:3557e93a-fca0-4e30-885b-a5c76e8ad637',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c3658dbf-1514-452b-a5c0-4ca35d1641fa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10813',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd4c592f2-6564-46db-bc7c-4112adb51bab',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c3658dbf-1514-452b-a5c0-4ca35d1641fa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020426Z:c3658dbf-1514-452b-a5c0-4ca35d1641fa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:25 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '651802b6-661c-4fdf-96aa-986795a5b03b',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10812',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '18bde13b-ada8-4624-8bb4-ddeb1fc8ec5e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '651802b6-661c-4fdf-96aa-986795a5b03b',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020426Z:651802b6-661c-4fdf-96aa-986795a5b03b',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b2c468fc-179b-4758-8334-2d286e817c08',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10811',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'de336025-d630-45a8-9e47-29e74c272c53',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b2c468fc-179b-4758-8334-2d286e817c08',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020427Z:b2c468fc-179b-4758-8334-2d286e817c08',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e0a5c13d-9eb9-47bb-aca9-44dafdece168',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10810',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'caecfc69-972c-4026-9f14-f4ad2efb4677',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e0a5c13d-9eb9-47bb-aca9-44dafdece168',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020427Z:e0a5c13d-9eb9-47bb-aca9-44dafdece168',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:26 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7b77686d-525c-4a53-a2b5-ae1cf2e6fdf8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10809',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b5788050-e957-4b2d-93a3-d2c94e0d1499',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7b77686d-525c-4a53-a2b5-ae1cf2e6fdf8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020428Z:7b77686d-525c-4a53-a2b5-ae1cf2e6fdf8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bc3c604e-feb2-437d-9f34-69cd33d24fb4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10808',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '21d252a8-1f76-4ffd-a231-125fb3a94182',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bc3c604e-feb2-437d-9f34-69cd33d24fb4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020428Z:bc3c604e-feb2-437d-9f34-69cd33d24fb4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'be3534cd-8f60-4066-b8c6-8575c1689f79',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10807',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '63320891-379c-4de4-ad82-b9fad1b8f01b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'be3534cd-8f60-4066-b8c6-8575c1689f79',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020428Z:be3534cd-8f60-4066-b8c6-8575c1689f79',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:27 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '948f9233-f002-4721-9bd8-e92ac3d80867',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10806',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '68b932e7-29b0-4845-81b6-30420f4891c4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '948f9233-f002-4721-9bd8-e92ac3d80867',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020429Z:948f9233-f002-4721-9bd8-e92ac3d80867',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e5513111-b175-4d6e-bafd-6ee87d07e5c6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10805',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'db1fe877-5e64-43d5-be32-b689dec9f02c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e5513111-b175-4d6e-bafd-6ee87d07e5c6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020429Z:e5513111-b175-4d6e-bafd-6ee87d07e5c6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '53b8d614-ea3c-4b45-8ef5-3bd4b86bbc1e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10804',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '65f1de5e-be2f-4a59-abc0-e0acd3ea90f8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '53b8d614-ea3c-4b45-8ef5-3bd4b86bbc1e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020429Z:53b8d614-ea3c-4b45-8ef5-3bd4b86bbc1e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:28 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6a2354dc-1126-4a7a-9c44-c4eac224f7cb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10803',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a1e69728-a6f4-406e-8187-24fd244e13a7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6a2354dc-1126-4a7a-9c44-c4eac224f7cb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020430Z:6a2354dc-1126-4a7a-9c44-c4eac224f7cb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '13e531f1-f157-43e1-ad01-5cbb30527f13',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10802',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '511ddda7-dba3-4498-96fb-65ad4795350b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '13e531f1-f157-43e1-ad01-5cbb30527f13',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020430Z:13e531f1-f157-43e1-ad01-5cbb30527f13',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '17e28288-23db-44a9-addf-c72536f7a513',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10801',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fbe43489-0fbb-4866-81ca-0c57d936d5ff',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '17e28288-23db-44a9-addf-c72536f7a513',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020430Z:17e28288-23db-44a9-addf-c72536f7a513',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:29 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b3cab8f-849c-4b18-8f6c-f11e65699449',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10800',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '965cdd27-c0df-4aa1-bc7f-ff91ebe828e9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b3cab8f-849c-4b18-8f6c-f11e65699449',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020431Z:2b3cab8f-849c-4b18-8f6c-f11e65699449',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:30 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '904e945d-dfcc-417d-b893-ca4a005131d6',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10799',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2b2e8990-ae8d-4283-b0fe-8a7bca3816c5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '904e945d-dfcc-417d-b893-ca4a005131d6',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020432Z:904e945d-dfcc-417d-b893-ca4a005131d6',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2a31a6d4-1c22-4708-8e63-309cad7a8d17',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10798',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4c436388-1987-4996-8d9b-44fe218bc35d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2a31a6d4-1c22-4708-8e63-309cad7a8d17',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020432Z:2a31a6d4-1c22-4708-8e63-309cad7a8d17',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e0c1c259-7c69-4a1b-a9d9-c6ee4698a5ad',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10797',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6740d017-91af-48be-931d-3bcc39b51810',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e0c1c259-7c69-4a1b-a9d9-c6ee4698a5ad',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020432Z:e0c1c259-7c69-4a1b-a9d9-c6ee4698a5ad',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:31 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c04a2d7c-8cea-47dc-84f6-9567a471d585',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10796',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c8d74e48-efbf-4c47-9a15-085a9f33ece4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c04a2d7c-8cea-47dc-84f6-9567a471d585',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020433Z:c04a2d7c-8cea-47dc-84f6-9567a471d585',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '103883a8-ce1b-4901-91b6-88df8917149e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10795',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2ecae55a-3d6c-49b0-90a0-a0beb625f5ca',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '103883a8-ce1b-4901-91b6-88df8917149e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020433Z:103883a8-ce1b-4901-91b6-88df8917149e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '30e2f958-e1c4-47a1-8077-385fa2408a26',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10794',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5066d437-508f-4d93-adb7-b29d107c3aa4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '30e2f958-e1c4-47a1-8077-385fa2408a26',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020433Z:30e2f958-e1c4-47a1-8077-385fa2408a26',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:32 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4656a601-117b-44e9-a69b-eb84de52eff4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10793',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0946e9db-c8b5-49a4-be87-6847725bc199',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4656a601-117b-44e9-a69b-eb84de52eff4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020434Z:4656a601-117b-44e9-a69b-eb84de52eff4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '950494ef-8c20-4642-bec1-cf496743fb3d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10792',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0b362aeb-c768-42ea-8f5b-a4280d77b92b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '950494ef-8c20-4642-bec1-cf496743fb3d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020434Z:950494ef-8c20-4642-bec1-cf496743fb3d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'eb185c04-37fe-46d6-a291-ea3ae6f588aa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10791',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '411bf6c7-1970-4101-a729-bc1abb1e1672',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'eb185c04-37fe-46d6-a291-ea3ae6f588aa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020434Z:eb185c04-37fe-46d6-a291-ea3ae6f588aa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:33 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e96d4627-2868-474b-9147-d8272a086bb0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10790',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'fec10651-c8ec-4bb4-beeb-5536eb02f851',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e96d4627-2868-474b-9147-d8272a086bb0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020435Z:e96d4627-2868-474b-9147-d8272a086bb0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e3e92e8b-c25a-4e97-b920-e2ef302df9a7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10789',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8fe8aedf-8c1f-4416-b1cb-b08384e6ce4d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e3e92e8b-c25a-4e97-b920-e2ef302df9a7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020435Z:e3e92e8b-c25a-4e97-b920-e2ef302df9a7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '6bf9baf9-cb21-47c1-ba20-80096f7f3f3f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10788',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ebc740d6-fbbd-49af-b876-d30a1de716bb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '6bf9baf9-cb21-47c1-ba20-80096f7f3f3f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020435Z:6bf9baf9-cb21-47c1-ba20-80096f7f3f3f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:34 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e9af6f77-7cf2-4ade-b97e-ffe4956a163c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10787',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '024b3434-4adf-4995-8d6c-ceffc7bbe84a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e9af6f77-7cf2-4ade-b97e-ffe4956a163c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020436Z:e9af6f77-7cf2-4ade-b97e-ffe4956a163c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2d2e6b95-9eb5-4228-a948-96c1edb1fbb0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10786',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ea072723-0150-45fc-84a2-58fa9641ec09',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2d2e6b95-9eb5-4228-a948-96c1edb1fbb0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020436Z:2d2e6b95-9eb5-4228-a948-96c1edb1fbb0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:35 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '837d5bec-5691-4c1f-a39f-19684a2d0036',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10785',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '504a00b4-2b2b-4e12-86ff-bcf99bd6c8fd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '837d5bec-5691-4c1f-a39f-19684a2d0036',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020436Z:837d5bec-5691-4c1f-a39f-19684a2d0036',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9ebafde4-923e-410d-a418-a08ff8f97c77',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10784',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'cc589798-a6d4-447a-8a5b-bc3caf7960a9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9ebafde4-923e-410d-a418-a08ff8f97c77',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020437Z:9ebafde4-923e-410d-a418-a08ff8f97c77',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5023de19-2f18-4630-9381-c0640d4b2196',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10783',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '073af3a7-48cc-4d1a-a01c-442ecf1e0e45',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5023de19-2f18-4630-9381-c0640d4b2196',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020437Z:5023de19-2f18-4630-9381-c0640d4b2196',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:36 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2366803e-784b-4348-ae4f-ce2fb8a00c32',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10782',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4f6bb301-dbc1-4fcb-af7d-8abaf71354df',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2366803e-784b-4348-ae4f-ce2fb8a00c32',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020437Z:2366803e-784b-4348-ae4f-ce2fb8a00c32',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b6ce2daa-d462-4e3e-95ee-4a98ce31b6fb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10781',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ffe1c997-3dc2-4bc5-bf18-3df79ef65371',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b6ce2daa-d462-4e3e-95ee-4a98ce31b6fb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020438Z:b6ce2daa-d462-4e3e-95ee-4a98ce31b6fb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3910afeb-2822-48d2-b201-7470eacfc084',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10780',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6f7ac915-2f7b-4d05-8193-68a0e7458dd3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3910afeb-2822-48d2-b201-7470eacfc084',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020438Z:3910afeb-2822-48d2-b201-7470eacfc084',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:37 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7142a0e9-04ba-432e-a20e-1b4f9791778f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10779',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '56987aeb-cb53-4aea-ab97-2091adba472d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7142a0e9-04ba-432e-a20e-1b4f9791778f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020439Z:7142a0e9-04ba-432e-a20e-1b4f9791778f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd6b239ea-7057-4743-b93f-3cd06386a96d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10778',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '991e4f30-bb17-4e3a-af0f-d37422fab324',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd6b239ea-7057-4743-b93f-3cd06386a96d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020439Z:d6b239ea-7057-4743-b93f-3cd06386a96d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '54e39652-c4a1-4696-9c4d-e441c7272d4e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10777',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7886b177-2d29-424e-ae8a-057fec843125',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '54e39652-c4a1-4696-9c4d-e441c7272d4e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020439Z:54e39652-c4a1-4696-9c4d-e441c7272d4e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:38 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'de8f763e-865d-4b6a-84a6-c50205dde7e7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10776',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b093d027-99bf-46dc-bf44-75daca5ed0bb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'de8f763e-865d-4b6a-84a6-c50205dde7e7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020440Z:de8f763e-865d-4b6a-84a6-c50205dde7e7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '471cf084-5a33-4256-8ac7-bb06aca3b643',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10775',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'f9c92cfe-5952-4c83-a663-0dc183d10511',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '471cf084-5a33-4256-8ac7-bb06aca3b643',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020440Z:471cf084-5a33-4256-8ac7-bb06aca3b643',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'aa9d52ef-e606-4c19-85f2-f47aae1fc063',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10774',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5e6e011b-4f55-4d10-89f3-d6b9717d4378',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'aa9d52ef-e606-4c19-85f2-f47aae1fc063',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020440Z:aa9d52ef-e606-4c19-85f2-f47aae1fc063',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:39 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bcf4ad79-8d62-44e8-bbdb-0be854f6f602',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10773',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e60ba15b-1e73-4342-8dfb-86ad603d09df',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bcf4ad79-8d62-44e8-bbdb-0be854f6f602',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020441Z:bcf4ad79-8d62-44e8-bbdb-0be854f6f602',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:40 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c8f32e5f-e655-48b8-860e-7548418aaca1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10772',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4d7edf5f-9e76-4018-94a7-a8342c21ee4a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c8f32e5f-e655-48b8-860e-7548418aaca1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020442Z:c8f32e5f-e655-48b8-860e-7548418aaca1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5859bf37-3138-4459-947a-8aa286eb54da',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10771',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1e95a9c0-39ab-40c6-8363-c3951cec97ef',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5859bf37-3138-4459-947a-8aa286eb54da',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020442Z:5859bf37-3138-4459-947a-8aa286eb54da',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:41 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3a78e64b-61db-4bb0-bd94-ba0bb73df8c7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10770',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '42fefce1-0aa7-494a-8fcf-4640ac600aba',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3a78e64b-61db-4bb0-bd94-ba0bb73df8c7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020443Z:3a78e64b-61db-4bb0-bd94-ba0bb73df8c7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a85ff000-8663-419a-bec8-a2cd611a52ba',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10769',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ae2dcf3d-7e18-446f-aeb7-c185ba8bcacb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a85ff000-8663-419a-bec8-a2cd611a52ba',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020443Z:a85ff000-8663-419a-bec8-a2cd611a52ba',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '057558cd-ac30-40a6-a7e2-4654bdae3a7d',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10768',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '3158ee8d-b642-4093-a869-01413812f14b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '057558cd-ac30-40a6-a7e2-4654bdae3a7d',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020443Z:057558cd-ac30-40a6-a7e2-4654bdae3a7d',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:42 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '417d3dc9-6ebb-46e6-9b4a-0057823b2467',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10767',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '430ed7ba-29b5-449d-9e22-bad0aa235740',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '417d3dc9-6ebb-46e6-9b4a-0057823b2467',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020444Z:417d3dc9-6ebb-46e6-9b4a-0057823b2467',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:43 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8de2ac80-eecf-403f-99ee-cd67b0a2a3e9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10766',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '089571d2-fa5b-4960-92c3-6125841da8f1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8de2ac80-eecf-403f-99ee-cd67b0a2a3e9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020445Z:8de2ac80-eecf-403f-99ee-cd67b0a2a3e9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '8cf13d2c-7d42-4437-b0bd-1b94d860eff4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10765',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '1ee9a08f-01fc-4e9b-81df-fc7703c5ce2d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '8cf13d2c-7d42-4437-b0bd-1b94d860eff4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020445Z:8cf13d2c-7d42-4437-b0bd-1b94d860eff4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ab73ec15-204f-4d75-a929-2011fd664226',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10764',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e7a6d52c-dc12-4c30-9b74-bcfe4b6f64d3',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ab73ec15-204f-4d75-a929-2011fd664226',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020445Z:ab73ec15-204f-4d75-a929-2011fd664226',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:44 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '9b1a1610-c27e-441e-87b3-8789bda4b5a2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10763',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e38446d4-2756-4501-b605-cf1dd1eb9b35',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '9b1a1610-c27e-441e-87b3-8789bda4b5a2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020446Z:9b1a1610-c27e-441e-87b3-8789bda4b5a2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2468655a-5047-4af8-8cbf-46e5989b7902',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10762',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b5037d59-ee10-488a-9295-5abe337fba64',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2468655a-5047-4af8-8cbf-46e5989b7902',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020446Z:2468655a-5047-4af8-8cbf-46e5989b7902',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5a28f646-c206-4316-b13f-6c8cddbebe55',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10761',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '80e0354c-084c-4b54-89ef-e9924fc1eafd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5a28f646-c206-4316-b13f-6c8cddbebe55',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020446Z:5a28f646-c206-4316-b13f-6c8cddbebe55',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:45 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '56486d08-31df-4a4e-a06a-232177b06770',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10760',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '85eb3c62-4922-4247-ab92-f74507f8b020',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '56486d08-31df-4a4e-a06a-232177b06770',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020447Z:56486d08-31df-4a4e-a06a-232177b06770',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '68da09d2-5567-4a07-b747-df72fd77deb4',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10759',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '87d96c7a-f839-421c-ae89-21b64a75a0be',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '68da09d2-5567-4a07-b747-df72fd77deb4',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020447Z:68da09d2-5567-4a07-b747-df72fd77deb4',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '53f84186-5f06-4d02-acb8-8c2d84bd7d1c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10758',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2a72e7fb-f11b-4d16-a604-33d323e384a7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '53f84186-5f06-4d02-acb8-8c2d84bd7d1c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020447Z:53f84186-5f06-4d02-acb8-8c2d84bd7d1c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:46 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b99c54b9-db52-4ee7-876f-e7c2beb91e81',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10757',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6a1b9692-0e84-422c-b917-1b6b818ce9f8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b99c54b9-db52-4ee7-876f-e7c2beb91e81',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020448Z:b99c54b9-db52-4ee7-876f-e7c2beb91e81',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '5c5aabdc-81bb-442a-b542-c8ef28762f93',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10756',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'edf82d88-d3ab-4bc6-84ed-e510693a72eb',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '5c5aabdc-81bb-442a-b542-c8ef28762f93',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020448Z:5c5aabdc-81bb-442a-b542-c8ef28762f93',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e8370199-006d-4f5f-99e1-37141b91fdd8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10755',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7e8e9d49-a1cd-4974-bc5d-6f6d1f78a4c1',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e8370199-006d-4f5f-99e1-37141b91fdd8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020448Z:e8370199-006d-4f5f-99e1-37141b91fdd8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:47 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd1f54583-bbeb-43af-946a-3ffafb6b45a1',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10754',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5dfbb083-d835-4ce4-914e-dfff70ee6442',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd1f54583-bbeb-43af-946a-3ffafb6b45a1',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020449Z:d1f54583-bbeb-43af-946a-3ffafb6b45a1',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '69655af6-c2eb-4806-9695-f98e82a79505',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10753',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '78658907-5f67-416c-91ed-08f962ba890b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '69655af6-c2eb-4806-9695-f98e82a79505',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020449Z:69655af6-c2eb-4806-9695-f98e82a79505',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2148e62d-4553-420e-afa1-2636c407faae',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10752',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9f19e373-0b3b-4e1b-852a-f31da2aa808c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2148e62d-4553-420e-afa1-2636c407faae',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020449Z:2148e62d-4553-420e-afa1-2636c407faae',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:48 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '2b3eb14e-342d-41da-9b61-59d5ec1a9cb0',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10751',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '9565a735-97d0-4c3b-92ee-0c7ad0a10a19',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '2b3eb14e-342d-41da-9b61-59d5ec1a9cb0',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020450Z:2b3eb14e-342d-41da-9b61-59d5ec1a9cb0',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '67f1e34e-6d83-402b-827a-1b2d2bd5219c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10750',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e9cb6dd0-0d8a-48de-98f1-57167b306423',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '67f1e34e-6d83-402b-827a-1b2d2bd5219c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020450Z:67f1e34e-6d83-402b-827a-1b2d2bd5219c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:49 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b4454501-2aa1-4126-8da3-1de236d0cab3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10749',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5c0c8015-d792-4400-b9c4-d6180c07c87c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b4454501-2aa1-4126-8da3-1de236d0cab3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020451Z:b4454501-2aa1-4126-8da3-1de236d0cab3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e0974fea-1752-42d3-b280-9789d3f00f9c',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10748',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '320eaf49-5cdd-4dbd-b9cd-09b20596739b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e0974fea-1752-42d3-b280-9789d3f00f9c',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020451Z:e0974fea-1752-42d3-b280-9789d3f00f9c',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '0cec6e1d-c33d-43b0-9254-5a30531bb749',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10747',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '5867b070-fd0a-4565-b36a-2d1dd39eb413',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '0cec6e1d-c33d-43b0-9254-5a30531bb749',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020451Z:0cec6e1d-c33d-43b0-9254-5a30531bb749',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:51 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'e155b461-4ff7-4709-93a4-639832d81deb',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10746',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'af1167e2-8100-4780-96aa-71fbcabcdc5c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'e155b461-4ff7-4709-93a4-639832d81deb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020452Z:e155b461-4ff7-4709-93a4-639832d81deb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7669841c-edb0-4b95-ba18-69fd6eb6a8b9',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10745',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd9887282-dd7f-499a-a52b-9e058e817932',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7669841c-edb0-4b95-ba18-69fd6eb6a8b9',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020452Z:7669841c-edb0-4b95-ba18-69fd6eb6a8b9',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a5f256de-0cc9-4c2e-a513-3f417a8d0b3e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10744',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '41e0d729-7dfb-465a-93d3-8b5f2a576bdd',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a5f256de-0cc9-4c2e-a513-3f417a8d0b3e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020452Z:a5f256de-0cc9-4c2e-a513-3f417a8d0b3e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:52 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '919adb8e-1667-407e-b5f3-ad7c4fa170ae',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10743',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dd4c2a4b-25ff-4a56-af3f-62c4db2fc844',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '919adb8e-1667-407e-b5f3-ad7c4fa170ae',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020453Z:919adb8e-1667-407e-b5f3-ad7c4fa170ae',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'dce3c2c5-e263-4b8f-9a05-0e2fb523dbe3',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10742',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2907f7a7-cd6b-4364-afff-149c37f5daf8',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'dce3c2c5-e263-4b8f-9a05-0e2fb523dbe3',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020453Z:dce3c2c5-e263-4b8f-9a05-0e2fb523dbe3',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7352c437-bc66-4073-b05b-33de06da8cda',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10741',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'c5a439db-d8ba-491b-b554-1b8a607b4460',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7352c437-bc66-4073-b05b-33de06da8cda',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020453Z:7352c437-bc66-4073-b05b-33de06da8cda',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:53 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '7f5bf81f-1580-4d26-b090-552f344e433e',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10740',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7bb321dc-cac9-449b-ac5b-335cf3806fed',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '7f5bf81f-1580-4d26-b090-552f344e433e',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020454Z:7f5bf81f-1580-4d26-b090-552f344e433e',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd9b03323-2b45-4597-b4fb-367174675641',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10739',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'e7e44d59-dad8-4b37-9cbb-b6604e6b1a6d',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd9b03323-2b45-4597-b4fb-367174675641',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020454Z:d9b03323-2b45-4597-b4fb-367174675641',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ea944aae-3e57-4139-8053-b7f957eb5192',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10738',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'dfa83b61-22a6-419b-901f-c9fafa2e7dd7',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ea944aae-3e57-4139-8053-b7f957eb5192',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020454Z:ea944aae-3e57-4139-8053-b7f957eb5192',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:54 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '896bfbcd-9257-4692-bf73-7b6dbfaf40f8',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10737',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'ba52791c-65ca-4666-ba42-4cc892ae006a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '896bfbcd-9257-4692-bf73-7b6dbfaf40f8',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020455Z:896bfbcd-9257-4692-bf73-7b6dbfaf40f8',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ce930a04-a470-407b-82cb-037933bbb06a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10736',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'db3c67b6-7c30-4e49-b512-8b5b2851b3fa',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ce930a04-a470-407b-82cb-037933bbb06a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020455Z:ce930a04-a470-407b-82cb-037933bbb06a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '26293eb4-45f5-4c4f-b611-51c0da4941f7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10735',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '63f2f897-3894-4e23-8898-d8d8616810c4',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '26293eb4-45f5-4c4f-b611-51c0da4941f7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020455Z:26293eb4-45f5-4c4f-b611-51c0da4941f7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:55 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'aeb570e7-2901-4e36-802d-156c73b5dd17',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10734',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'b76cc933-41b6-4a96-a7a9-b62d4e0abd5c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'aeb570e7-2901-4e36-802d-156c73b5dd17',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020456Z:aeb570e7-2901-4e36-802d-156c73b5dd17',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'a9edc3f2-3da8-43da-b793-4ec5e1691b1a',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10733',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '796bf659-0811-4048-bf91-349477e5e2ae',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'a9edc3f2-3da8-43da-b793-4ec5e1691b1a',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020456Z:a9edc3f2-3da8-43da-b793-4ec5e1691b1a',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'f6c3efab-87b1-405f-bdaf-f345f3112537',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10732',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a515a367-fbf8-47d4-a0cf-ab88f154b0b6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'f6c3efab-87b1-405f-bdaf-f345f3112537',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020456Z:f6c3efab-87b1-405f-bdaf-f345f3112537',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:56 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '92ef3ab9-a381-4db5-97fc-b376401aa198',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10731',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '192f4f47-f740-4701-bb8a-7669399ffd01',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '92ef3ab9-a381-4db5-97fc-b376401aa198',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020457Z:92ef3ab9-a381-4db5-97fc-b376401aa198',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '26075dc7-641a-4d75-a2af-121e61004398',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10730',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'd43af880-ce11-4f98-b72f-d105dc6530b9',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '26075dc7-641a-4d75-a2af-121e61004398',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020457Z:26075dc7-641a-4d75-a2af-121e61004398',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '89e6f2ac-61fc-4887-a26d-7f1e61027e16',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10729',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '8def2cb8-2f86-49bb-8c1b-fc5df34a4c8e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '89e6f2ac-61fc-4887-a26d-7f1e61027e16',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020457Z:89e6f2ac-61fc-4887-a26d-7f1e61027e16',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:57 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'd1a85fc4-ccba-4cf4-b656-27e90814fd6f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10728',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '77819b04-b65d-44a8-86f7-c4f63bdcc20e',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'd1a85fc4-ccba-4cf4-b656-27e90814fd6f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020458Z:d1a85fc4-ccba-4cf4-b656-27e90814fd6f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'c56c1c3e-517d-4dca-8c33-fc93f5a609fa',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10727',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '932030c4-e415-454e-9af8-c196b6079c4c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'c56c1c3e-517d-4dca-8c33-fc93f5a609fa',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020458Z:c56c1c3e-517d-4dca-8c33-fc93f5a609fa',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'faf06df1-120b-4c11-87ab-5c9ef7f745d7',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10726',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '2590751d-bae0-48d5-88b5-6338c0316302',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'faf06df1-120b-4c11-87ab-5c9ef7f745d7',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020458Z:faf06df1-120b-4c11-87ab-5c9ef7f745d7',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:58 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'db833c06-9a7d-41d5-b2cf-21831aca063f',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10725',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '6164e502-900e-45d4-99e5-c0a14e1fa35a',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'db833c06-9a7d-41d5-b2cf-21831aca063f',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020459Z:db833c06-9a7d-41d5-b2cf-21831aca063f',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'ab83f3cd-2920-411d-91ec-45d433b01070',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10724',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '7d65cc1d-56a0-447c-8f80-0c4233080829',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'ab83f3cd-2920-411d-91ec-45d433b01070',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020459Z:ab83f3cd-2920-411d-91ec-45d433b01070',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'bf582653-3a7c-4ea2-b367-ee758d6d3392',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10723',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0f324bbc-277a-45c3-9ab1-9b302dfdc29b',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'bf582653-3a7c-4ea2-b367-ee758d6d3392',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020500Z:bf582653-3a7c-4ea2-b367-ee758d6d3392',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:59 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ 'b87b07b3-3b2c-47f9-bec1-db48c83b4a83',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10722',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'a57bebc3-98aa-4bf2-aa33-f1c659c3d6f6',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ 'b87b07b3-3b2c-47f9-bec1-db48c83b4a83',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020500Z:b87b07b3-3b2c-47f9-bec1-db48c83b4a83',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:05:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fed57ab92c9617f251ddbe2918cadecedeeef6eecef6de83373b7b8f76f61fedee8f0feedd7b706ffffe4f7df44b","fe1f26b06b9e3e010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Retry-After',
+ '10',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '4f935ca8-4203-4820-9302-e890335432c2',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10721',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '4c3666d1-07d5-44ee-9702-d5d1c5b4fa02',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '4f935ca8-4203-4820-9302-e890335432c2',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020500Z:4f935ca8-4203-4820-9302-e890335432c2',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:05:00 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservicexxx/operationId/e8e8176e-3a09-448c-bcee-c2976bf69f48')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471f35eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc7c7abd5cb326bcfab7a71b7aca6997493674dbb6eee56abbce64f5eb719fe5e5c37797d594cf377efdeb92fcf6677f383fc60f7c1a7f9f6bd6ce7e1f6fefec1747b32cdf3ede9dec3079f4ece3f7d78be7ff0d1e8a365b6c86948b76cdd70a7d4fef57a4a5fcff2997c58b76f0a86b3b7b3b7bbbdbbb3bdf7e0cdcedea39dfd47bbfbe3837bf71edcdbbfff53d4345fcee20def3fdad9191f3c3cd839b8f7f0a73efa","25ff0f79a84d8f69010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '42f59b2f-e951-4378-b524-ca8d67105125',
+ 'x-ms-ratelimit-remaining-subscription-reads',
+ '10720',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0e9f21be-12ca-46e9-982c-a8b2b84e78b2',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '42f59b2f-e951-4378-b524-ca8d67105125',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020501Z:42f59b2f-e951-4378-b524-ca8d67105125',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:05:01 GMT'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring')
+ .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-resource-requests',
+ '11994',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'bf071820-f273-4b3f-bc09-f7d0e6111127',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-request-id',
+ 'a7c1be10-523f-4664-8795-aa6a176bd0fc',
+ 'x-ms-correlation-request-id',
+ 'a7c1be10-523f-4664-8795-aa6a176bd0fc',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020501Z:a7c1be10-523f-4664-8795-aa6a176bd0fc',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:05:01 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_get_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_get_test.js
new file mode 100644
index 000000000000..9049aa50d16c
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_get_test.js
@@ -0,0 +1,153 @@
+let nock = require('nock');
+
+module.exports.hash = "40cd5f694d7496e4da00a77363113c14";
+
+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',
+ 'bf80b568-724d-4ed5-bdfa-5b1c3e5c0300',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=ApVc5_owN4VOqm-ooGxexxg; expires=Fri, 26-Nov-2021 02:03:59 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfQgSVVVvqZfm9db8f76JiU2deGxNEfPhThRU7M5b4IF5cx6IKh6JSC6DXUEEQTPMGmZUVmXzL3QZQ0jVlUDOw8QCRwlZ8NvqKdTR7tvYiF1vXlsr8_Jh9odISaBfJXzf3kgkjIus2RZvgyObFYXwpqywxiUT-yqTFOZ1fGbu988gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:58 GMT',
+ 'Content-Length',
+ '980'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration')
+ .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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',
+ '776a9be4-c2d3-467c-9c29-b3edee522900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR1 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AhBKbTzbWvJJkInSJarc2m4; expires=Fri, 26-Nov-2021 02:03:59 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6cP2Nk8YXbmxc0KBglH6plMRwIdiL2SNrFt3xPeRaZmuKL8WubTYcOZCksESACjcC6HLzNw7x0lGi6Pco9ug2Hqa_GdHFSobM_c3PtNgyW4c57FlBQbM0_4ruuLJupw04n_Yl2F21rAsU-bMNi8s3FeJdZhXYZaQMFt14bCnkpQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:58 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=276859fd-f265-4311-8814-044ce6448b41&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',
+ 'e7e3df85-db65-4e20-b515-394ca76b0900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=AnnB6lr3Sc9IpZS6RB9aa-0WPr5BAQAAAI6qCtkOAAAA; expires=Fri, 26-Nov-2021 02:03:59 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:58 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring/myservicexxx')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147abba5ae5755be4cd478ff8afcba229aa65b1bc78dd666dfed1a38f5eafa7d33c9fe5b38f461f5de635befde8d1bdd1474d5e5f16d3fc6c466deeef3edc9bcef6a60fcef387fb9fe6bb0fef3f7cb89fdfdfbd971d4c67fbd9945e5de6ed5555bf7d5957e74549707ff147d5ba9d54ebe5ececa5f4bd9e94c594fff8de477b3be3fdbdf1dea7e3dd4fe95dfbd7fece47dfff25bfe4978c3e6aaf5704e3a32f8a695d35d5793b3e5ead5e96597b5ed58bbbaf5735e14fef356fd780bccc1668fc7a873ea291d6f8bdcd96b3ac9e7d44b0ca6a9ab53caa8ff2ac69d70d9a651784c72ffee86d7ebd4b9f5f66e53adf45e302c3bddbac27cdb42e5678adb9fb70effce1fdd9c1f9f6bde9a70fb6f777f7f6b71fee4e1f6c1f4ccf771e4c6793f3bdfdddbb75de54eb7a9a7f5e57eb55737771fdd34d9b37ed5d26f98ce87a77d360a8bdd2fbddbb77849f0e29f8f4","97fc3f8fde7178ce010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '3b1ab3e3-2839-4819-9d1c-cc6e3cc30efb',
+ 'x-ms-ratelimit-remaining-subscription-resource-requests',
+ '11996',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ '0e242c99-f019-4474-bf40-5d00eb5bab1c',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '3b1ab3e3-2839-4819-9d1c-cc6e3cc30efb',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020400Z:3b1ab3e3-2839-4819-9d1c-cc6e3cc30efb',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:03:59 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_list_test.js b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_list_test.js
new file mode 100644
index 000000000000..08faeddc2c69
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/recordings/node/appplatform_test/recording_services_list_test.js
@@ -0,0 +1,153 @@
+let nock = require('nock');
+
+module.exports.hash = "d903f0345530aec940f6e2b63153a5c1";
+
+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',
+ 'e7e3df85-db65-4e20-b515-394cba6b0900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=Apjyfguvux5PoIOEKO5fXlw; expires=Fri, 26-Nov-2021 02:04:02 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNTd1ee4qHcumginP8hnQ_J_0bAp6kQ0dUCwX3eNqLyacCOeDvSSm-DoJ6P1QjbM3XgXWOZhwwzGWOaFU8oUAfSZTssO3o4aVDIWdm0uvwcdpEkKK3mQASfJFGsG3mCmluZMpU4jmD3LuZHtKGvbmLASuyWjpHaoOA8TDheziX-sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:01 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',
+ '2e8633a5-c0fd-4bc7-80d5-d332863e2900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - KRSLR1 ProdSlices',
+ 'Set-Cookie',
+ 'fpc=AjZdbHfcFvJPhthfHlljEcU; expires=Fri, 26-Nov-2021 02:04:02 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrwv9-DY891DGL4lqP0EHQrIlzJjXwABRht96IgDhRWLofJbDDJBROdNIQ0jdJNgQnL6GVW9Pydb-MA8cgyWETo9vRvz6rlzD3s_lgnfxK3BqtWb-odVQknsTDozsUKUAO8_uHhchCNljoPUbct7tU8lwh1EWYEH-kuK0ePQ1OoT4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:01 GMT',
+ 'Content-Length',
+ '1753'
+]);
+
+nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true})
+ .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=bd726f69-df94-4526-b0f7-b95b759a3795&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',
+ 'e7e3df85-db65-4e20-b515-394cc06b0900',
+ 'x-ms-ests-server',
+ '2.1.12171.14 - SEASLR2 ProdSlices',
+ 'x-ms-clitelem',
+ '1,0,0,,',
+ 'Set-Cookie',
+ 'fpc=AvRftykzoHFPmfioRUjAGZIWPr5BAQAAAJKqCtkOAAAA; expires=Fri, 26-Nov-2021 02:04:03 GMT; path=/; secure; HttpOnly; SameSite=None',
+ 'Set-Cookie',
+ 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly',
+ 'Set-Cookie',
+ 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:02 GMT',
+ 'Content-Length',
+ '1351'
+]);
+
+nock('https://management.azure.com:443', {"encodedQueryParams":true})
+ .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.AppPlatform/Spring')
+ .query(true)
+ .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1aaae5679dd1679f3d123feebb2688a6a592c2f5eb7594b6d3e7abd9e4ef37c96cf3e1a7d7499d7f8f6a347f7461f35797d594cf3b319b5b9bffb706f3adb9b3e38cf1fee7f9aef3ebcfff0e17e7e7ff75e76309ded67537a7599b75755fdf6655d9d1725c1fdc51f55eb7652ad97b3b397d2f77a521653fee37b1feded8cf7f7c67b9f8e773fa577ed5ffb3b1f7dff97fc925f32faa8bd5e118c8fbe28a675d554e7edf878b57a5966ed79552feebe5ed5843fbdd7bc5d03f2325ba0f1eb1dfa88465ae3f7365bceb27af611c12aab69d6f2a83ecab3a65d3768965d101ebff8a3b7f9f52e7dcef4da45e302c3bddbac27cdb42e5678adb9fb70effce1fdd9c1f9f6bde9a70fb6f777f7f6b71fee4e1f6c1f4ccf771e4c6793f3bdfdddbb75de54eb7a9a7f5e57eb55737771fdd34d9b37ed5d26f98ce87a77d360a8bdd2fbddbb77849f0e29f8f4977cff","97fc3fdf246a39da010000"], [
+ 'Cache-Control',
+ 'no-cache',
+ 'Pragma',
+ 'no-cache',
+ 'Transfer-Encoding',
+ 'chunked',
+ 'Content-Type',
+ 'application/json; charset=utf-8',
+ 'Content-Encoding',
+ 'gzip',
+ 'Expires',
+ '-1',
+ 'Vary',
+ 'Accept-Encoding,Accept-Encoding',
+ 'x-ms-request-id',
+ '88b9283a-0440-4f9f-8aef-95252cc93364',
+ 'x-ms-ratelimit-remaining-subscription-resource-requests',
+ '11995',
+ 'Request-Context',
+ 'appId=cid-v1:797d7e4e-8180-497e-a254-780fbd39ba4d',
+ 'Strict-Transport-Security',
+ 'max-age=31536000; includeSubDomains',
+ 'X-Content-Type-Options',
+ 'nosniff',
+ 'x-ms-client-request-id',
+ 'de3ff5a4-4cb5-4bd7-9c3a-44edd61b2dd5',
+ 'x-rp-server-mvid',
+ 'c98d556d-0be2-4fd7-8a47-2c7368eb00a4',
+ 'Server',
+ 'nginx/1.17.7',
+ 'x-ms-correlation-request-id',
+ '88b9283a-0440-4f9f-8aef-95252cc93364',
+ 'x-ms-routing-request-id',
+ 'SOUTHEASTASIA:20211027T020403Z:88b9283a-0440-4f9f-8aef-95252cc93364',
+ 'Date',
+ 'Wed, 27 Oct 2021 02:04:02 GMT'
+]);
diff --git a/sdk/appplatform/arm-appplatform/review/arm-appplatform.api.md b/sdk/appplatform/arm-appplatform/review/arm-appplatform.api.md
new file mode 100644
index 000000000000..bab16e3519b4
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/review/arm-appplatform.api.md
@@ -0,0 +1,1620 @@
+## API Report File for "@azure/arm-appplatform"
+
+> 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 interface ApplicationInsightsAgentVersions {
+ readonly java?: string;
+}
+
+// @public (undocumented)
+export class AppPlatformManagementClient extends AppPlatformManagementClientContext {
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AppPlatformManagementClientOptionalParams);
+ // (undocumented)
+ apps: Apps;
+ // (undocumented)
+ bindings: Bindings;
+ // (undocumented)
+ certificates: Certificates;
+ // (undocumented)
+ configServers: ConfigServers;
+ // (undocumented)
+ customDomains: CustomDomains;
+ // (undocumented)
+ deployments: Deployments;
+ // (undocumented)
+ monitoringSettings: MonitoringSettings;
+ // (undocumented)
+ operations: Operations;
+ // (undocumented)
+ runtimeVersions: RuntimeVersions;
+ // (undocumented)
+ services: Services;
+ // (undocumented)
+ skus: Skus;
+ // (undocumented)
+ storages: Storages;
+}
+
+// @public (undocumented)
+export class AppPlatformManagementClientContext extends coreClient.ServiceClient {
+ // (undocumented)
+ $host: string;
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AppPlatformManagementClientOptionalParams);
+ // (undocumented)
+ apiVersion: string;
+ // (undocumented)
+ subscriptionId: string;
+}
+
+// @public
+export interface AppPlatformManagementClientOptionalParams extends coreClient.ServiceClientOptions {
+ $host?: string;
+ apiVersion?: string;
+ endpoint?: string;
+}
+
+// @public
+export type AppResource = ProxyResource & {
+ properties?: AppResourceProperties;
+ identity?: ManagedIdentityProperties;
+ location?: string;
+};
+
+// @public
+export interface AppResourceCollection {
+ nextLink?: string;
+ value?: AppResource[];
+}
+
+// @public
+export interface AppResourceProperties {
+ activeDeploymentName?: string;
+ readonly createdTime?: Date;
+ customPersistentDisks?: CustomPersistentDiskResource[];
+ enableEndToEndTLS?: boolean;
+ fqdn?: string;
+ httpsOnly?: boolean;
+ loadedCertificates?: LoadedCertificate[];
+ persistentDisk?: PersistentDisk;
+ readonly provisioningState?: AppResourceProvisioningState;
+ public?: boolean;
+ temporaryDisk?: TemporaryDisk;
+ readonly url?: string;
+}
+
+// @public
+export type AppResourceProvisioningState = string;
+
+// @public
+export interface Apps {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, appName: string, appResource: AppResource, options?: AppsCreateOrUpdateOptionalParams): Promise, AppsCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, appResource: AppResource, options?: AppsCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, appName: string, options?: AppsDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, appName: string, options?: AppsDeleteOptionalParams): Promise;
+ beginUpdate(resourceGroupName: string, serviceName: string, appName: string, appResource: AppResource, options?: AppsUpdateOptionalParams): Promise, AppsUpdateResponse>>;
+ beginUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, appResource: AppResource, options?: AppsUpdateOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, appName: string, options?: AppsGetOptionalParams): Promise;
+ getResourceUploadUrl(resourceGroupName: string, serviceName: string, appName: string, options?: AppsGetResourceUploadUrlOptionalParams): Promise;
+ list(resourceGroupName: string, serviceName: string, options?: AppsListOptionalParams): PagedAsyncIterableIterator;
+ validateDomain(resourceGroupName: string, serviceName: string, appName: string, validatePayload: CustomDomainValidatePayload, options?: AppsValidateDomainOptionalParams): Promise;
+}
+
+// @public
+export interface AppsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type AppsCreateOrUpdateResponse = AppResource;
+
+// @public
+export interface AppsDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface AppsGetOptionalParams extends coreClient.OperationOptions {
+ syncStatus?: string;
+}
+
+// @public
+export interface AppsGetResourceUploadUrlOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type AppsGetResourceUploadUrlResponse = ResourceUploadDefinition;
+
+// @public
+export type AppsGetResponse = AppResource;
+
+// @public
+export interface AppsListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type AppsListNextResponse = AppResourceCollection;
+
+// @public
+export interface AppsListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type AppsListResponse = AppResourceCollection;
+
+// @public
+export interface AppsUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type AppsUpdateResponse = AppResource;
+
+// @public
+export interface AppsValidateDomainOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type AppsValidateDomainResponse = CustomDomainValidateResult;
+
+// @public
+export interface AvailableOperations {
+ nextLink?: string;
+ value?: OperationDetail[];
+}
+
+// @public (undocumented)
+export interface AvailableRuntimeVersions {
+ readonly value?: SupportedRuntimeVersion[];
+}
+
+// @public
+export type AzureFileVolume = CustomPersistentDiskProperties & {
+ type: "AzureFileVolume";
+ shareName: string;
+};
+
+// @public
+export type BindingResource = ProxyResource & {
+ properties?: BindingResourceProperties;
+};
+
+// @public
+export interface BindingResourceCollection {
+ nextLink?: string;
+ value?: BindingResource[];
+}
+
+// @public
+export interface BindingResourceProperties {
+ bindingParameters?: {
+ [propertyName: string]: Record;
+ };
+ readonly createdAt?: string;
+ readonly generatedProperties?: string;
+ key?: string;
+ resourceId?: string;
+ readonly resourceName?: string;
+ readonly resourceType?: string;
+ readonly updatedAt?: string;
+}
+
+// @public
+export interface Bindings {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: BindingResource, options?: BindingsCreateOrUpdateOptionalParams): Promise, BindingsCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: BindingResource, options?: BindingsCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: BindingsDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: BindingsDeleteOptionalParams): Promise;
+ beginUpdate(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: BindingResource, options?: BindingsUpdateOptionalParams): Promise, BindingsUpdateResponse>>;
+ beginUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: BindingResource, options?: BindingsUpdateOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: BindingsGetOptionalParams): Promise;
+ list(resourceGroupName: string, serviceName: string, appName: string, options?: BindingsListOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export interface BindingsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type BindingsCreateOrUpdateResponse = BindingResource;
+
+// @public
+export interface BindingsDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface BindingsGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type BindingsGetResponse = BindingResource;
+
+// @public
+export interface BindingsListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type BindingsListNextResponse = BindingResourceCollection;
+
+// @public
+export interface BindingsListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type BindingsListResponse = BindingResourceCollection;
+
+// @public
+export interface BindingsUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type BindingsUpdateResponse = BindingResource;
+
+// @public
+export interface CertificateProperties {
+ readonly activateDate?: string;
+ readonly dnsNames?: string[];
+ readonly expirationDate?: string;
+ readonly issuedDate?: string;
+ readonly issuer?: string;
+ readonly subjectName?: string;
+ readonly thumbprint?: string;
+ type: "KeyVaultCertificate" | "ContentCertificate";
+}
+
+// @public (undocumented)
+export type CertificatePropertiesUnion = CertificateProperties | KeyVaultCertificateProperties | ContentCertificateProperties;
+
+// @public
+export type CertificateResource = ProxyResource & {
+ properties?: CertificatePropertiesUnion;
+};
+
+// @public
+export interface CertificateResourceCollection {
+ nextLink?: string;
+ value?: CertificateResource[];
+}
+
+// @public
+export interface Certificates {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, certificateName: string, certificateResource: CertificateResource, options?: CertificatesCreateOrUpdateOptionalParams): Promise, CertificatesCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, certificateName: string, certificateResource: CertificateResource, options?: CertificatesCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, certificateName: string, options?: CertificatesDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, certificateName: string, options?: CertificatesDeleteOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, certificateName: string, options?: CertificatesGetOptionalParams): Promise;
+ list(resourceGroupName: string, serviceName: string, options?: CertificatesListOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export interface CertificatesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type CertificatesCreateOrUpdateResponse = CertificateResource;
+
+// @public
+export interface CertificatesDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface CertificatesGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type CertificatesGetResponse = CertificateResource;
+
+// @public
+export interface CertificatesListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type CertificatesListNextResponse = CertificateResourceCollection;
+
+// @public
+export interface CertificatesListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type CertificatesListResponse = CertificateResourceCollection;
+
+// @public
+export interface CloudError {
+ error?: CloudErrorBody;
+}
+
+// @public
+export interface CloudErrorBody {
+ code?: string;
+ details?: CloudErrorBody[];
+ message?: string;
+ target?: string;
+}
+
+// @public
+export interface ClusterResourceProperties {
+ networkProfile?: NetworkProfile;
+ readonly powerState?: PowerState;
+ readonly provisioningState?: ProvisioningState;
+ readonly serviceId?: string;
+ readonly version?: number;
+}
+
+// @public
+export interface ConfigServerGitProperty {
+ hostKey?: string;
+ hostKeyAlgorithm?: string;
+ label?: string;
+ password?: string;
+ privateKey?: string;
+ repositories?: GitPatternRepository[];
+ searchPaths?: string[];
+ strictHostKeyChecking?: boolean;
+ uri: string;
+ username?: string;
+}
+
+// @public
+export interface ConfigServerProperties {
+ configServer?: ConfigServerSettings;
+ error?: ErrorModel;
+ readonly provisioningState?: ConfigServerState;
+}
+
+// @public
+export type ConfigServerResource = ProxyResource & {
+ properties?: ConfigServerProperties;
+};
+
+// @public
+export interface ConfigServers {
+ beginUpdatePatch(resourceGroupName: string, serviceName: string, configServerResource: ConfigServerResource, options?: ConfigServersUpdatePatchOptionalParams): Promise, ConfigServersUpdatePatchResponse>>;
+ beginUpdatePatchAndWait(resourceGroupName: string, serviceName: string, configServerResource: ConfigServerResource, options?: ConfigServersUpdatePatchOptionalParams): Promise;
+ beginUpdatePut(resourceGroupName: string, serviceName: string, configServerResource: ConfigServerResource, options?: ConfigServersUpdatePutOptionalParams): Promise, ConfigServersUpdatePutResponse>>;
+ beginUpdatePutAndWait(resourceGroupName: string, serviceName: string, configServerResource: ConfigServerResource, options?: ConfigServersUpdatePutOptionalParams): Promise;
+ beginValidate(resourceGroupName: string, serviceName: string, configServerSettings: ConfigServerSettings, options?: ConfigServersValidateOptionalParams): Promise, ConfigServersValidateResponse>>;
+ beginValidateAndWait(resourceGroupName: string, serviceName: string, configServerSettings: ConfigServerSettings, options?: ConfigServersValidateOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, options?: ConfigServersGetOptionalParams): Promise;
+}
+
+// @public
+export interface ConfigServerSettings {
+ gitProperty?: ConfigServerGitProperty;
+}
+
+// @public
+export interface ConfigServerSettingsErrorRecord {
+ messages?: string[];
+ name?: string;
+ uri?: string;
+}
+
+// @public
+export interface ConfigServerSettingsValidateResult {
+ details?: ConfigServerSettingsErrorRecord[];
+ isValid?: boolean;
+}
+
+// @public
+export interface ConfigServersGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ConfigServersGetResponse = ConfigServerResource;
+
+// @public
+export type ConfigServerState = string;
+
+// @public
+export interface ConfigServersUpdatePatchOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type ConfigServersUpdatePatchResponse = ConfigServerResource;
+
+// @public
+export interface ConfigServersUpdatePutOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type ConfigServersUpdatePutResponse = ConfigServerResource;
+
+// @public
+export interface ConfigServersValidateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type ConfigServersValidateResponse = ConfigServerSettingsValidateResult;
+
+// @public
+export type ContentCertificateProperties = CertificateProperties & {
+ type: "ContentCertificate";
+ content: string;
+};
+
+// @public
+export type CreatedByType = string;
+
+// @public
+export interface CustomContainer {
+ args?: string[];
+ command?: string[];
+ containerImage?: string;
+ imageRegistryCredential?: ImageRegistryCredential;
+ server?: string;
+}
+
+// @public
+export interface CustomDomainProperties {
+ readonly appName?: string;
+ certName?: string;
+ thumbprint?: string;
+}
+
+// @public
+export type CustomDomainResource = ProxyResource & {
+ properties?: CustomDomainProperties;
+};
+
+// @public
+export interface CustomDomainResourceCollection {
+ nextLink?: string;
+ value?: CustomDomainResource[];
+}
+
+// @public
+export interface CustomDomains {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, appName: string, domainName: string, domainResource: CustomDomainResource, options?: CustomDomainsCreateOrUpdateOptionalParams): Promise, CustomDomainsCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, domainName: string, domainResource: CustomDomainResource, options?: CustomDomainsCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, appName: string, domainName: string, options?: CustomDomainsDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, appName: string, domainName: string, options?: CustomDomainsDeleteOptionalParams): Promise;
+ beginUpdate(resourceGroupName: string, serviceName: string, appName: string, domainName: string, domainResource: CustomDomainResource, options?: CustomDomainsUpdateOptionalParams): Promise, CustomDomainsUpdateResponse>>;
+ beginUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, domainName: string, domainResource: CustomDomainResource, options?: CustomDomainsUpdateOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, appName: string, domainName: string, options?: CustomDomainsGetOptionalParams): Promise;
+ list(resourceGroupName: string, serviceName: string, appName: string, options?: CustomDomainsListOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export interface CustomDomainsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type CustomDomainsCreateOrUpdateResponse = CustomDomainResource;
+
+// @public
+export interface CustomDomainsDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface CustomDomainsGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type CustomDomainsGetResponse = CustomDomainResource;
+
+// @public
+export interface CustomDomainsListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type CustomDomainsListNextResponse = CustomDomainResourceCollection;
+
+// @public
+export interface CustomDomainsListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type CustomDomainsListResponse = CustomDomainResourceCollection;
+
+// @public
+export interface CustomDomainsUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type CustomDomainsUpdateResponse = CustomDomainResource;
+
+// @public
+export interface CustomDomainValidatePayload {
+ name: string;
+}
+
+// @public
+export interface CustomDomainValidateResult {
+ isValid?: boolean;
+ message?: string;
+}
+
+// @public
+export interface CustomPersistentDiskProperties {
+ mountOptions?: string[];
+ mountPath: string;
+ readonly?: boolean;
+ type: "AzureFileVolume";
+}
+
+// @public (undocumented)
+export type CustomPersistentDiskPropertiesUnion = CustomPersistentDiskProperties | AzureFileVolume;
+
+// @public
+export interface CustomPersistentDiskResource {
+ customPersistentDiskProperties?: CustomPersistentDiskPropertiesUnion;
+ storageId: string;
+}
+
+// @public
+export interface DeploymentInstance {
+ readonly discoveryStatus?: string;
+ readonly name?: string;
+ readonly reason?: string;
+ readonly startTime?: string;
+ readonly status?: string;
+}
+
+// @public
+export type DeploymentResource = ProxyResource & {
+ properties?: DeploymentResourceProperties;
+ sku?: Sku;
+};
+
+// @public
+export interface DeploymentResourceCollection {
+ nextLink?: string;
+ value?: DeploymentResource[];
+}
+
+// @public
+export interface DeploymentResourceProperties {
+ readonly active?: boolean;
+ readonly appName?: string;
+ readonly createdTime?: Date;
+ deploymentSettings?: DeploymentSettings;
+ readonly instances?: DeploymentInstance[];
+ readonly provisioningState?: DeploymentResourceProvisioningState;
+ source?: UserSourceInfo;
+ readonly status?: DeploymentResourceStatus;
+}
+
+// @public
+export type DeploymentResourceProvisioningState = string;
+
+// @public
+export type DeploymentResourceStatus = string;
+
+// @public
+export interface Deployments {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, deploymentResource: DeploymentResource, options?: DeploymentsCreateOrUpdateOptionalParams): Promise, DeploymentsCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, deploymentResource: DeploymentResource, options?: DeploymentsCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsDeleteOptionalParams): Promise;
+ beginGenerateHeapDump(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, diagnosticParameters: DiagnosticParameters, options?: DeploymentsGenerateHeapDumpOptionalParams): Promise, void>>;
+ beginGenerateHeapDumpAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, diagnosticParameters: DiagnosticParameters, options?: DeploymentsGenerateHeapDumpOptionalParams): Promise;
+ beginGenerateThreadDump(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, diagnosticParameters: DiagnosticParameters, options?: DeploymentsGenerateThreadDumpOptionalParams): Promise, void>>;
+ beginGenerateThreadDumpAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, diagnosticParameters: DiagnosticParameters, options?: DeploymentsGenerateThreadDumpOptionalParams): Promise;
+ beginRestart(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsRestartOptionalParams): Promise, void>>;
+ beginRestartAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsRestartOptionalParams): Promise;
+ beginStart(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsStartOptionalParams): Promise, void>>;
+ beginStartAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsStartOptionalParams): Promise;
+ beginStartJFR(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, diagnosticParameters: DiagnosticParameters, options?: DeploymentsStartJFROptionalParams): Promise, void>>;
+ beginStartJFRAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, diagnosticParameters: DiagnosticParameters, options?: DeploymentsStartJFROptionalParams): Promise;
+ beginStop(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsStopOptionalParams): Promise, void>>;
+ beginStopAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsStopOptionalParams): Promise;
+ beginUpdate(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, deploymentResource: DeploymentResource, options?: DeploymentsUpdateOptionalParams): Promise, DeploymentsUpdateResponse>>;
+ beginUpdateAndWait(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, deploymentResource: DeploymentResource, options?: DeploymentsUpdateOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsGetOptionalParams): Promise;
+ getLogFileUrl(resourceGroupName: string, serviceName: string, appName: string, deploymentName: string, options?: DeploymentsGetLogFileUrlOptionalParams): Promise;
+ list(resourceGroupName: string, serviceName: string, appName: string, options?: DeploymentsListOptionalParams): PagedAsyncIterableIterator;
+ listForCluster(resourceGroupName: string, serviceName: string, options?: DeploymentsListForClusterOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export interface DeploymentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type DeploymentsCreateOrUpdateResponse = DeploymentResource;
+
+// @public
+export interface DeploymentsDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentSettings {
+ cpu?: number;
+ environmentVariables?: {
+ [propertyName: string]: string;
+ };
+ jvmOptions?: string;
+ memoryInGB?: number;
+ netCoreMainEntryPath?: string;
+ resourceRequests?: ResourceRequests;
+ runtimeVersion?: RuntimeVersion;
+}
+
+// @public
+export interface DeploymentsGenerateHeapDumpOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentsGenerateThreadDumpOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentsGetLogFileUrlOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type DeploymentsGetLogFileUrlResponse = LogFileUrlResponse;
+
+// @public
+export interface DeploymentsGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type DeploymentsGetResponse = DeploymentResource;
+
+// @public
+export interface DeploymentsListForClusterNextOptionalParams extends coreClient.OperationOptions {
+ version?: string[];
+}
+
+// @public
+export type DeploymentsListForClusterNextResponse = DeploymentResourceCollection;
+
+// @public
+export interface DeploymentsListForClusterOptionalParams extends coreClient.OperationOptions {
+ version?: string[];
+}
+
+// @public
+export type DeploymentsListForClusterResponse = DeploymentResourceCollection;
+
+// @public
+export interface DeploymentsListNextOptionalParams extends coreClient.OperationOptions {
+ version?: string[];
+}
+
+// @public
+export type DeploymentsListNextResponse = DeploymentResourceCollection;
+
+// @public
+export interface DeploymentsListOptionalParams extends coreClient.OperationOptions {
+ version?: string[];
+}
+
+// @public
+export type DeploymentsListResponse = DeploymentResourceCollection;
+
+// @public
+export interface DeploymentsRestartOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentsStartJFROptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentsStartOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentsStopOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface DeploymentsUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type DeploymentsUpdateResponse = DeploymentResource;
+
+// @public
+export interface DiagnosticParameters {
+ appInstance?: string;
+ duration?: string;
+ filePath?: string;
+}
+
+// @public
+export interface ErrorModel {
+ code?: string;
+ message?: string;
+}
+
+// @public
+export interface GitPatternRepository {
+ hostKey?: string;
+ hostKeyAlgorithm?: string;
+ label?: string;
+ name: string;
+ password?: string;
+ pattern?: string[];
+ privateKey?: string;
+ searchPaths?: string[];
+ strictHostKeyChecking?: boolean;
+ uri: string;
+ username?: string;
+}
+
+// @public
+export interface ImageRegistryCredential {
+ password?: string;
+ username?: string;
+}
+
+// @public
+export type KeyVaultCertificateProperties = CertificateProperties & {
+ type: "KeyVaultCertificate";
+ vaultUri: string;
+ keyVaultCertName: string;
+ certVersion?: string;
+ excludePrivateKey?: boolean;
+};
+
+// @public
+export enum KnownAppResourceProvisioningState {
+ // (undocumented)
+ Creating = "Creating",
+ // (undocumented)
+ Failed = "Failed",
+ // (undocumented)
+ Succeeded = "Succeeded",
+ // (undocumented)
+ Updating = "Updating"
+}
+
+// @public
+export enum KnownConfigServerState {
+ // (undocumented)
+ Deleted = "Deleted",
+ // (undocumented)
+ Failed = "Failed",
+ // (undocumented)
+ NotAvailable = "NotAvailable",
+ // (undocumented)
+ Succeeded = "Succeeded",
+ // (undocumented)
+ Updating = "Updating"
+}
+
+// @public
+export enum KnownCreatedByType {
+ // (undocumented)
+ Application = "Application",
+ // (undocumented)
+ Key = "Key",
+ // (undocumented)
+ ManagedIdentity = "ManagedIdentity",
+ // (undocumented)
+ User = "User"
+}
+
+// @public
+export enum KnownDeploymentResourceProvisioningState {
+ // (undocumented)
+ Creating = "Creating",
+ // (undocumented)
+ Failed = "Failed",
+ // (undocumented)
+ Succeeded = "Succeeded",
+ // (undocumented)
+ Updating = "Updating"
+}
+
+// @public
+export enum KnownDeploymentResourceStatus {
+ // (undocumented)
+ Allocating = "Allocating",
+ // (undocumented)
+ Compiling = "Compiling",
+ // (undocumented)
+ Failed = "Failed",
+ // (undocumented)
+ Running = "Running",
+ // (undocumented)
+ Stopped = "Stopped",
+ // (undocumented)
+ Unknown = "Unknown",
+ // (undocumented)
+ Upgrading = "Upgrading"
+}
+
+// @public
+export enum KnownManagedIdentityType {
+ // (undocumented)
+ None = "None",
+ // (undocumented)
+ SystemAssigned = "SystemAssigned",
+ // (undocumented)
+ SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
+ // (undocumented)
+ UserAssigned = "UserAssigned"
+}
+
+// @public
+export enum KnownMonitoringSettingState {
+ // (undocumented)
+ Failed = "Failed",
+ // (undocumented)
+ NotAvailable = "NotAvailable",
+ // (undocumented)
+ Succeeded = "Succeeded",
+ // (undocumented)
+ Updating = "Updating"
+}
+
+// @public
+export enum KnownPowerState {
+ // (undocumented)
+ Running = "Running",
+ // (undocumented)
+ Stopped = "Stopped"
+}
+
+// @public
+export enum KnownProvisioningState {
+ // (undocumented)
+ Creating = "Creating",
+ // (undocumented)
+ Deleted = "Deleted",
+ // (undocumented)
+ Deleting = "Deleting",
+ // (undocumented)
+ Failed = "Failed",
+ // (undocumented)
+ Moved = "Moved",
+ // (undocumented)
+ MoveFailed = "MoveFailed",
+ // (undocumented)
+ Moving = "Moving",
+ // (undocumented)
+ Succeeded = "Succeeded",
+ // (undocumented)
+ Updating = "Updating"
+}
+
+// @public
+export enum KnownResourceSkuRestrictionsReasonCode {
+ // (undocumented)
+ NotAvailableForSubscription = "NotAvailableForSubscription",
+ // (undocumented)
+ QuotaId = "QuotaId"
+}
+
+// @public
+export enum KnownResourceSkuRestrictionsType {
+ // (undocumented)
+ Location = "Location",
+ // (undocumented)
+ Zone = "Zone"
+}
+
+// @public
+export enum KnownRuntimeVersion {
+ // (undocumented)
+ Java11 = "Java_11",
+ // (undocumented)
+ Java8 = "Java_8",
+ // (undocumented)
+ NetCore31 = "NetCore_31"
+}
+
+// @public
+export enum KnownSkuScaleType {
+ // (undocumented)
+ Automatic = "Automatic",
+ // (undocumented)
+ Manual = "Manual",
+ // (undocumented)
+ None = "None"
+}
+
+// @public
+export enum KnownSupportedRuntimePlatform {
+ // (undocumented)
+ Java = "Java",
+ // (undocumented)
+ NETCore = ".NET Core"
+}
+
+// @public
+export enum KnownSupportedRuntimeValue {
+ // (undocumented)
+ Java11 = "Java_11",
+ // (undocumented)
+ Java8 = "Java_8",
+ // (undocumented)
+ NetCore31 = "NetCore_31"
+}
+
+// @public
+export enum KnownTestKeyType {
+ // (undocumented)
+ Primary = "Primary",
+ // (undocumented)
+ Secondary = "Secondary"
+}
+
+// @public
+export enum KnownTrafficDirection {
+ // (undocumented)
+ Inbound = "Inbound",
+ // (undocumented)
+ Outbound = "Outbound"
+}
+
+// @public
+export enum KnownUserSourceType {
+ // (undocumented)
+ Container = "Container",
+ // (undocumented)
+ Jar = "Jar",
+ // (undocumented)
+ NetCoreZip = "NetCoreZip",
+ // (undocumented)
+ Source = "Source"
+}
+
+// @public
+export interface LoadedCertificate {
+ loadTrustStore?: boolean;
+ resourceId: string;
+}
+
+// @public
+export interface LogFileUrlResponse {
+ url: string;
+}
+
+// @public
+export interface LogSpecification {
+ blobDuration?: string;
+ displayName?: string;
+ name?: string;
+}
+
+// @public
+export interface ManagedIdentityProperties {
+ principalId?: string;
+ tenantId?: string;
+ type?: ManagedIdentityType;
+}
+
+// @public
+export type ManagedIdentityType = string;
+
+// @public
+export interface MetricDimension {
+ displayName?: string;
+ name?: string;
+ toBeExportedForShoebox?: boolean;
+}
+
+// @public
+export interface MetricSpecification {
+ aggregationType?: string;
+ category?: string;
+ dimensions?: MetricDimension[];
+ displayDescription?: string;
+ displayName?: string;
+ fillGapWithZero?: boolean;
+ name?: string;
+ sourceMdmNamespace?: string;
+ supportedAggregationTypes?: string[];
+ supportedTimeGrainTypes?: string[];
+ unit?: string;
+}
+
+// @public
+export interface MonitoringSettingProperties {
+ appInsightsAgentVersions?: ApplicationInsightsAgentVersions;
+ appInsightsInstrumentationKey?: string;
+ appInsightsSamplingRate?: number;
+ error?: ErrorModel;
+ readonly provisioningState?: MonitoringSettingState;
+ traceEnabled?: boolean;
+}
+
+// @public
+export type MonitoringSettingResource = ProxyResource & {
+ properties?: MonitoringSettingProperties;
+};
+
+// @public
+export interface MonitoringSettings {
+ beginUpdatePatch(resourceGroupName: string, serviceName: string, monitoringSettingResource: MonitoringSettingResource, options?: MonitoringSettingsUpdatePatchOptionalParams): Promise, MonitoringSettingsUpdatePatchResponse>>;
+ beginUpdatePatchAndWait(resourceGroupName: string, serviceName: string, monitoringSettingResource: MonitoringSettingResource, options?: MonitoringSettingsUpdatePatchOptionalParams): Promise;
+ beginUpdatePut(resourceGroupName: string, serviceName: string, monitoringSettingResource: MonitoringSettingResource, options?: MonitoringSettingsUpdatePutOptionalParams): Promise, MonitoringSettingsUpdatePutResponse>>;
+ beginUpdatePutAndWait(resourceGroupName: string, serviceName: string, monitoringSettingResource: MonitoringSettingResource, options?: MonitoringSettingsUpdatePutOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, options?: MonitoringSettingsGetOptionalParams): Promise;
+}
+
+// @public
+export interface MonitoringSettingsGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type MonitoringSettingsGetResponse = MonitoringSettingResource;
+
+// @public
+export type MonitoringSettingState = string;
+
+// @public
+export interface MonitoringSettingsUpdatePatchOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type MonitoringSettingsUpdatePatchResponse = MonitoringSettingResource;
+
+// @public
+export interface MonitoringSettingsUpdatePutOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type MonitoringSettingsUpdatePutResponse = MonitoringSettingResource;
+
+// @public
+export interface NameAvailability {
+ message?: string;
+ nameAvailable?: boolean;
+ reason?: string;
+}
+
+// @public
+export interface NameAvailabilityParameters {
+ name: string;
+ type: string;
+}
+
+// @public
+export interface NetworkProfile {
+ appNetworkResourceGroup?: string;
+ appSubnetId?: string;
+ readonly outboundIPs?: NetworkProfileOutboundIPs;
+ readonly requiredTraffics?: RequiredTraffic[];
+ serviceCidr?: string;
+ serviceRuntimeNetworkResourceGroup?: string;
+ serviceRuntimeSubnetId?: string;
+}
+
+// @public
+export interface NetworkProfileOutboundIPs {
+ readonly publicIPs?: string[];
+}
+
+// @public
+export interface OperationDetail {
+ display?: OperationDisplay;
+ isDataAction?: boolean;
+ name?: string;
+ origin?: string;
+ properties?: OperationProperties;
+}
+
+// @public
+export interface OperationDisplay {
+ description?: string;
+ operation?: string;
+ provider?: string;
+ resource?: string;
+}
+
+// @public
+export interface OperationProperties {
+ serviceSpecification?: ServiceSpecification;
+}
+
+// @public
+export interface Operations {
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type OperationsListNextResponse = AvailableOperations;
+
+// @public
+export interface OperationsListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type OperationsListResponse = AvailableOperations;
+
+// @public
+export interface PersistentDisk {
+ mountPath?: string;
+ sizeInGB?: number;
+ readonly usedInGB?: number;
+}
+
+// @public
+export type PowerState = string;
+
+// @public
+export type ProvisioningState = string;
+
+// @public
+export type ProxyResource = Resource & {};
+
+// @public
+export interface RegenerateTestKeyRequestPayload {
+ keyType: TestKeyType;
+}
+
+// @public
+export interface RequiredTraffic {
+ readonly direction?: TrafficDirection;
+ readonly fqdns?: string[];
+ readonly ips?: string[];
+ readonly port?: number;
+ readonly protocol?: string;
+}
+
+// @public
+export interface Resource {
+ readonly id?: string;
+ readonly name?: string;
+ readonly type?: string;
+}
+
+// @public
+export interface ResourceRequests {
+ cpu?: string;
+ memory?: string;
+}
+
+// @public
+export interface ResourceSku {
+ capacity?: SkuCapacity;
+ locationInfo?: ResourceSkuLocationInfo[];
+ locations?: string[];
+ name?: string;
+ resourceType?: string;
+ restrictions?: ResourceSkuRestrictions[];
+ tier?: string;
+}
+
+// @public (undocumented)
+export interface ResourceSkuCapabilities {
+ name?: string;
+ value?: string;
+}
+
+// @public
+export interface ResourceSkuCollection {
+ nextLink?: string;
+ value?: ResourceSku[];
+}
+
+// @public
+export interface ResourceSkuLocationInfo {
+ location?: string;
+ zoneDetails?: ResourceSkuZoneDetails[];
+ zones?: string[];
+}
+
+// @public
+export interface ResourceSkuRestrictionInfo {
+ locations?: string[];
+ zones?: string[];
+}
+
+// @public
+export interface ResourceSkuRestrictions {
+ reasonCode?: ResourceSkuRestrictionsReasonCode;
+ restrictionInfo?: ResourceSkuRestrictionInfo;
+ type?: ResourceSkuRestrictionsType;
+ values?: string[];
+}
+
+// @public
+export type ResourceSkuRestrictionsReasonCode = string;
+
+// @public
+export type ResourceSkuRestrictionsType = string;
+
+// @public
+export interface ResourceSkuZoneDetails {
+ capabilities?: ResourceSkuCapabilities[];
+ name?: string[];
+}
+
+// @public
+export interface ResourceUploadDefinition {
+ relativePath?: string;
+ uploadUrl?: string;
+}
+
+// @public
+export type RuntimeVersion = string;
+
+// @public
+export interface RuntimeVersions {
+ listRuntimeVersions(options?: RuntimeVersionsListRuntimeVersionsOptionalParams): Promise;
+}
+
+// @public
+export interface RuntimeVersionsListRuntimeVersionsOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type RuntimeVersionsListRuntimeVersionsResponse = AvailableRuntimeVersions;
+
+// @public
+export type ServiceResource = TrackedResource & {
+ properties?: ClusterResourceProperties;
+ sku?: Sku;
+};
+
+// @public
+export interface ServiceResourceList {
+ nextLink?: string;
+ value?: ServiceResource[];
+}
+
+// @public
+export interface Services {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, resource: ServiceResource, options?: ServicesCreateOrUpdateOptionalParams): Promise, ServicesCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, resource: ServiceResource, options?: ServicesCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, options?: ServicesDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, options?: ServicesDeleteOptionalParams): Promise;
+ beginStart(resourceGroupName: string, serviceName: string, options?: ServicesStartOptionalParams): Promise, void>>;
+ beginStartAndWait(resourceGroupName: string, serviceName: string, options?: ServicesStartOptionalParams): Promise;
+ beginStop(resourceGroupName: string, serviceName: string, options?: ServicesStopOptionalParams): Promise, void>>;
+ beginStopAndWait(resourceGroupName: string, serviceName: string, options?: ServicesStopOptionalParams): Promise;
+ beginUpdate(resourceGroupName: string, serviceName: string, resource: ServiceResource, options?: ServicesUpdateOptionalParams): Promise, ServicesUpdateResponse>>;
+ beginUpdateAndWait(resourceGroupName: string, serviceName: string, resource: ServiceResource, options?: ServicesUpdateOptionalParams): Promise;
+ checkNameAvailability(location: string, availabilityParameters: NameAvailabilityParameters, options?: ServicesCheckNameAvailabilityOptionalParams): Promise;
+ disableTestEndpoint(resourceGroupName: string, serviceName: string, options?: ServicesDisableTestEndpointOptionalParams): Promise;
+ enableTestEndpoint(resourceGroupName: string, serviceName: string, options?: ServicesEnableTestEndpointOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, options?: ServicesGetOptionalParams): Promise;
+ list(resourceGroupName: string, options?: ServicesListOptionalParams): PagedAsyncIterableIterator;
+ listBySubscription(options?: ServicesListBySubscriptionOptionalParams): PagedAsyncIterableIterator;
+ listTestKeys(resourceGroupName: string, serviceName: string, options?: ServicesListTestKeysOptionalParams): Promise;
+ regenerateTestKey(resourceGroupName: string, serviceName: string, regenerateTestKeyRequest: RegenerateTestKeyRequestPayload, options?: ServicesRegenerateTestKeyOptionalParams): Promise;
+}
+
+// @public
+export interface ServicesCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesCheckNameAvailabilityResponse = NameAvailability;
+
+// @public
+export interface ServicesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type ServicesCreateOrUpdateResponse = ServiceResource;
+
+// @public
+export interface ServicesDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface ServicesDisableTestEndpointOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export interface ServicesEnableTestEndpointOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesEnableTestEndpointResponse = TestKeys;
+
+// @public
+export interface ServicesGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesGetResponse = ServiceResource;
+
+// @public
+export interface ServicesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesListBySubscriptionNextResponse = ServiceResourceList;
+
+// @public
+export interface ServicesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesListBySubscriptionResponse = ServiceResourceList;
+
+// @public
+export interface ServicesListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesListNextResponse = ServiceResourceList;
+
+// @public
+export interface ServicesListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesListResponse = ServiceResourceList;
+
+// @public
+export interface ServicesListTestKeysOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesListTestKeysResponse = TestKeys;
+
+// @public
+export interface ServiceSpecification {
+ logSpecifications?: LogSpecification[];
+ metricSpecifications?: MetricSpecification[];
+}
+
+// @public
+export interface ServicesRegenerateTestKeyOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type ServicesRegenerateTestKeyResponse = TestKeys;
+
+// @public
+export interface ServicesStartOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface ServicesStopOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface ServicesUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type ServicesUpdateResponse = ServiceResource;
+
+// @public
+export interface Sku {
+ capacity?: number;
+ name?: string;
+ tier?: string;
+}
+
+// @public
+export interface SkuCapacity {
+ default?: number;
+ maximum?: number;
+ minimum: number;
+ scaleType?: SkuScaleType;
+}
+
+// @public
+export interface Skus {
+ list(options?: SkusListOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export type SkuScaleType = string;
+
+// @public
+export interface SkusListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type SkusListNextResponse = ResourceSkuCollection;
+
+// @public
+export interface SkusListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type SkusListResponse = ResourceSkuCollection;
+
+// @public
+export type StorageAccount = StorageProperties & {
+ storageType: "StorageAccount";
+ accountName: string;
+ accountKey: string;
+};
+
+// @public
+export interface StorageProperties {
+ storageType: "StorageAccount";
+}
+
+// @public (undocumented)
+export type StoragePropertiesUnion = StorageProperties | StorageAccount;
+
+// @public
+export type StorageResource = ProxyResource & {
+ properties?: StoragePropertiesUnion;
+ readonly systemData?: SystemData;
+};
+
+// @public
+export interface StorageResourceCollection {
+ nextLink?: string;
+ value?: StorageResource[];
+}
+
+// @public
+export interface Storages {
+ beginCreateOrUpdate(resourceGroupName: string, serviceName: string, storageName: string, storageResource: StorageResource, options?: StoragesCreateOrUpdateOptionalParams): Promise, StoragesCreateOrUpdateResponse>>;
+ beginCreateOrUpdateAndWait(resourceGroupName: string, serviceName: string, storageName: string, storageResource: StorageResource, options?: StoragesCreateOrUpdateOptionalParams): Promise;
+ beginDelete(resourceGroupName: string, serviceName: string, storageName: string, options?: StoragesDeleteOptionalParams): Promise, void>>;
+ beginDeleteAndWait(resourceGroupName: string, serviceName: string, storageName: string, options?: StoragesDeleteOptionalParams): Promise;
+ get(resourceGroupName: string, serviceName: string, storageName: string, options?: StoragesGetOptionalParams): Promise;
+ list(resourceGroupName: string, serviceName: string, options?: StoragesListOptionalParams): PagedAsyncIterableIterator;
+}
+
+// @public
+export interface StoragesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export type StoragesCreateOrUpdateResponse = StorageResource;
+
+// @public
+export interface StoragesDeleteOptionalParams extends coreClient.OperationOptions {
+ resumeFrom?: string;
+ updateIntervalInMs?: number;
+}
+
+// @public
+export interface StoragesGetOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type StoragesGetResponse = StorageResource;
+
+// @public
+export interface StoragesListNextOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type StoragesListNextResponse = StorageResourceCollection;
+
+// @public
+export interface StoragesListOptionalParams extends coreClient.OperationOptions {
+}
+
+// @public
+export type StoragesListResponse = StorageResourceCollection;
+
+// @public
+export type SupportedRuntimePlatform = string;
+
+// @public
+export type SupportedRuntimeValue = string;
+
+// @public
+export interface SupportedRuntimeVersion {
+ platform?: SupportedRuntimePlatform;
+ value?: SupportedRuntimeValue;
+ version?: string;
+}
+
+// @public
+export interface SystemData {
+ createdAt?: Date;
+ createdBy?: string;
+ createdByType?: CreatedByType;
+ lastModifiedAt?: Date;
+ lastModifiedBy?: string;
+ lastModifiedByType?: CreatedByType;
+}
+
+// @public
+export interface TemporaryDisk {
+ mountPath?: string;
+ sizeInGB?: number;
+}
+
+// @public
+export interface TestKeys {
+ enabled?: boolean;
+ primaryKey?: string;
+ primaryTestEndpoint?: string;
+ secondaryKey?: string;
+ secondaryTestEndpoint?: string;
+}
+
+// @public
+export type TestKeyType = string;
+
+// @public
+export type TrackedResource = Resource & {
+ location?: string;
+ tags?: {
+ [propertyName: string]: string;
+ };
+};
+
+// @public
+export type TrafficDirection = string;
+
+// @public
+export interface UserSourceInfo {
+ artifactSelector?: string;
+ customContainer?: CustomContainer;
+ relativePath?: string;
+ type?: UserSourceType;
+ version?: string;
+}
+
+// @public
+export type UserSourceType = string;
+
+
+// (No @packageDocumentation comment for this package)
+
+```
diff --git a/sdk/appplatform/arm-appplatform/rollup.config.js b/sdk/appplatform/arm-appplatform/rollup.config.js
index 4ab01b0917f8..9be1955eb7f1 100644
--- a/sdk/appplatform/arm-appplatform/rollup.config.js
+++ b/sdk/appplatform/arm-appplatform/rollup.config.js
@@ -1,37 +1,188 @@
-import rollup from "rollup";
-import nodeResolve from "rollup-plugin-node-resolve";
-import sourcemaps from "rollup-plugin-sourcemaps";
-
-/**
- * @type {rollup.RollupFileOptions}
- */
-const config = {
- input: "./esm/appPlatformManagementClient.js",
- external: [
- "@azure/ms-rest-js",
- "@azure/ms-rest-azure-js"
- ],
- output: {
- file: "./dist/arm-appplatform.js",
- format: "umd",
- name: "Azure.ArmAppplatform",
- sourcemap: true,
- globals: {
- "@azure/ms-rest-js": "msRest",
- "@azure/ms-rest-azure-js": "msRestAzure"
- },
- banner: `/*
+/*
* 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.
- */`
- },
- plugins: [
- nodeResolve({ mainFields: ['module', 'main'] }),
- sourcemaps()
- ]
+ */
+
+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
+
+/**
+ * A function that can determine whether a rollupwarning should be ignored. If
+ * the function returns `true`, then the warning will not be displayed.
+ */
+
+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/**"]
+ },
+ 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/appplatform/arm-appplatform/src/appPlatformManagementClient.ts b/sdk/appplatform/arm-appplatform/src/appPlatformManagementClient.ts
index a942c7ed14c8..1e1bb516603a 100644
--- a/sdk/appplatform/arm-appplatform/src/appPlatformManagementClient.ts
+++ b/sdk/appplatform/arm-appplatform/src/appPlatformManagementClient.ts
@@ -3,66 +3,79 @@
* 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 {
+ ServicesImpl,
+ ConfigServersImpl,
+ MonitoringSettingsImpl,
+ AppsImpl,
+ BindingsImpl,
+ StoragesImpl,
+ CertificatesImpl,
+ CustomDomainsImpl,
+ DeploymentsImpl,
+ OperationsImpl,
+ RuntimeVersionsImpl,
+ SkusImpl
+} from "./operations";
+import {
+ Services,
+ ConfigServers,
+ MonitoringSettings,
+ Apps,
+ Bindings,
+ Storages,
+ Certificates,
+ CustomDomains,
+ Deployments,
+ Operations,
+ RuntimeVersions,
+ Skus
+} from "./operationsInterfaces";
import { AppPlatformManagementClientContext } from "./appPlatformManagementClientContext";
+import { AppPlatformManagementClientOptionalParams } from "./models";
-
-class AppPlatformManagementClient extends AppPlatformManagementClientContext {
- // Operation groups
- services: operations.Services;
- configServers: operations.ConfigServers;
- monitoringSettings: operations.MonitoringSettings;
- apps: operations.Apps;
- bindings: operations.Bindings;
- certificates: operations.Certificates;
- customDomains: operations.CustomDomains;
- deployments: operations.Deployments;
- operations: operations.Operations;
- runtimeVersions: operations.RuntimeVersions;
- skus: operations.Skus;
-
+export class AppPlatformManagementClient extends AppPlatformManagementClientContext {
/**
* Initializes a new instance of the AppPlatformManagementClient 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 subscriptionId Gets subscription ID which uniquely identify the Microsoft Azure
- * subscription. The subscription ID forms part of the URI for every service call.
- * @param [options] The parameter options
+ * @param credentials Subscription credentials which uniquely identify client subscription.
+ * @param subscriptionId Gets subscription ID which uniquely identify the Microsoft Azure subscription.
+ * The subscription ID forms part of the URI for every service call.
+ * @param options The parameter options
*/
- constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AppPlatformManagementClientOptions) {
+ constructor(
+ credentials: coreAuth.TokenCredential,
+ subscriptionId: string,
+ options?: AppPlatformManagementClientOptionalParams
+ ) {
super(credentials, subscriptionId, options);
- this.services = new operations.Services(this);
- this.configServers = new operations.ConfigServers(this);
- this.monitoringSettings = new operations.MonitoringSettings(this);
- this.apps = new operations.Apps(this);
- this.bindings = new operations.Bindings(this);
- this.certificates = new operations.Certificates(this);
- this.customDomains = new operations.CustomDomains(this);
- this.deployments = new operations.Deployments(this);
- this.operations = new operations.Operations(this);
- this.runtimeVersions = new operations.RuntimeVersions(this);
- this.skus = new operations.Skus(this);
+ this.services = new ServicesImpl(this);
+ this.configServers = new ConfigServersImpl(this);
+ this.monitoringSettings = new MonitoringSettingsImpl(this);
+ this.apps = new AppsImpl(this);
+ this.bindings = new BindingsImpl(this);
+ this.storages = new StoragesImpl(this);
+ this.certificates = new CertificatesImpl(this);
+ this.customDomains = new CustomDomainsImpl(this);
+ this.deployments = new DeploymentsImpl(this);
+ this.operations = new OperationsImpl(this);
+ this.runtimeVersions = new RuntimeVersionsImpl(this);
+ this.skus = new SkusImpl(this);
}
-}
-// Operation Specifications
-
-export {
- AppPlatformManagementClient,
- AppPlatformManagementClientContext,
- Models as AppPlatformManagementModels,
- Mappers as AppPlatformManagementMappers
-};
-export * from "./operations";
+ services: Services;
+ configServers: ConfigServers;
+ monitoringSettings: MonitoringSettings;
+ apps: Apps;
+ bindings: Bindings;
+ storages: Storages;
+ certificates: Certificates;
+ customDomains: CustomDomains;
+ deployments: Deployments;
+ operations: Operations;
+ runtimeVersions: RuntimeVersions;
+ skus: Skus;
+}
diff --git a/sdk/appplatform/arm-appplatform/src/appPlatformManagementClientContext.ts b/sdk/appplatform/arm-appplatform/src/appPlatformManagementClientContext.ts
index 1c6af685d8ac..0dcec0a21bc4 100644
--- a/sdk/appplatform/arm-appplatform/src/appPlatformManagementClientContext.ts
+++ b/sdk/appplatform/arm-appplatform/src/appPlatformManagementClientContext.ts
@@ -3,66 +3,69 @@
* 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 { AppPlatformManagementClientOptionalParams } from "./models";
-const packageName = "@azure/arm-appplatform";
-const packageVersion = "1.3.0";
-
-export class AppPlatformManagementClientContext extends msRestAzure.AzureServiceClient {
- credentials: msRest.ServiceClientCredentials | TokenCredential;
- apiVersion?: string;
+export class AppPlatformManagementClientContext extends coreClient.ServiceClient {
+ $host: string;
+ apiVersion: string;
subscriptionId: string;
/**
- * Initializes a new instance of the AppPlatformManagementClient 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 subscriptionId Gets subscription ID which uniquely identify the Microsoft Azure
- * subscription. The subscription ID forms part of the URI for every service call.
- * @param [options] The parameter options
+ * Initializes a new instance of the AppPlatformManagementClientContext class.
+ * @param credentials Subscription credentials which uniquely identify client subscription.
+ * @param subscriptionId Gets subscription ID which uniquely identify the Microsoft Azure subscription.
+ * The subscription ID forms part of the URI for every service call.
+ * @param options The parameter options
*/
- constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.AppPlatformManagementClientOptions) {
- if (credentials == undefined) {
- throw new Error('\'credentials\' cannot be null.');
+ constructor(
+ credentials: coreAuth.TokenCredential,
+ subscriptionId: string,
+ options?: AppPlatformManagementClientOptionalParams
+ ) {
+ 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: AppPlatformManagementClientOptionalParams = {
+ requestContentType: "application/json; charset=utf-8",
+ credential: credentials
+ };
- super(credentials, options);
+ const packageDetails = `azsdk-js-arm-appplatform/2.0.0-beta.1`;
+ const userAgentPrefix =
+ options.userAgentOptions && options.userAgentOptions.userAgentPrefix
+ ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
+ : `${packageDetails}`;
- this.apiVersion = '2020-11-01-preview';
- 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-09-01-preview";
}
}
diff --git a/sdk/appplatform/arm-appplatform/src/index.ts b/sdk/appplatform/arm-appplatform/src/index.ts
new file mode 100644
index 000000000000..e1a3b03ec9f3
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/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 { AppPlatformManagementClient } from "./appPlatformManagementClient";
+export { AppPlatformManagementClientContext } from "./appPlatformManagementClientContext";
+export * from "./operationsInterfaces";
diff --git a/sdk/appplatform/arm-appplatform/src/lroImpl.ts b/sdk/appplatform/arm-appplatform/src/lroImpl.ts
new file mode 100644
index 000000000000..518d5f053b4e
--- /dev/null
+++ b/sdk/appplatform/arm-appplatform/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/appplatform/arm-appplatform/src/models/appsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/appsMappers.ts
deleted file mode 100644
index 99e4dea19713..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/appsMappers.ts
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceCollection,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- CustomDomainValidatePayload,
- CustomDomainValidateResult,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ResourceUploadDefinition,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/bindingsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/bindingsMappers.ts
deleted file mode 100644
index 30588e309be2..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/bindingsMappers.ts
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceCollection,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/certificatesMappers.ts b/sdk/appplatform/arm-appplatform/src/models/certificatesMappers.ts
deleted file mode 100644
index 74a82eb8d30a..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/certificatesMappers.ts
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CertificateResourceCollection,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/configServersMappers.ts b/sdk/appplatform/arm-appplatform/src/models/configServersMappers.ts
deleted file mode 100644
index a4f7578092d0..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/configServersMappers.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- ConfigServerSettingsErrorRecord,
- ConfigServerSettingsValidateResult,
- CustomDomainProperties,
- CustomDomainResource,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/customDomainsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/customDomainsMappers.ts
deleted file mode 100644
index 02fcb4f36e3d..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/customDomainsMappers.ts
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- CustomDomainResourceCollection,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/deploymentsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/deploymentsMappers.ts
deleted file mode 100644
index 7414c396b7b1..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/deploymentsMappers.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceCollection,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- LogFileUrlResponse,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/index.ts b/sdk/appplatform/arm-appplatform/src/models/index.ts
index 221fe440bc9f..423cd6022b2c 100644
--- a/sdk/appplatform/arm-appplatform/src/models/index.ts
+++ b/sdk/appplatform/arm-appplatform/src/models/index.ts
@@ -6,1146 +6,928 @@
* 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 };
+export type CustomPersistentDiskPropertiesUnion =
+ | CustomPersistentDiskProperties
+ | AzureFileVolume;
+export type StoragePropertiesUnion = StorageProperties | StorageAccount;
+export type CertificatePropertiesUnion =
+ | CertificateProperties
+ | KeyVaultCertificateProperties
+ | ContentCertificateProperties;
-/**
- * Desired outbound IP resources for Azure Spring Cloud instance.
- */
-export interface NetworkProfileOutboundIPs {
+/** The core properties of ARM resources. */
+export interface Resource {
/**
- * A list of public IP addresses.
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * Fully qualified resource Id for the resource.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly publicIPs?: string[];
-}
-
-/**
- * Required inbound or outbound traffic for Azure Spring Cloud instance.
- */
-export interface RequiredTraffic {
+ readonly id?: string;
/**
- * The protocol of required traffic
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * The name of the resource.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly protocol?: string;
+ readonly name?: string;
/**
- * The port of required traffic
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * The type of the resource.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly port?: number;
+ readonly type?: string;
+}
+
+/** Service properties payload */
+export interface ClusterResourceProperties {
/**
- * The ip list of required traffic
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * Provisioning state of the Service
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly ips?: string[];
+ readonly provisioningState?: ProvisioningState;
+ /** Network profile of the Service */
+ networkProfile?: NetworkProfile;
/**
- * The FQDN list of required traffic
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * Version of the Service
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly fqdns?: string[];
+ readonly version?: number;
+ /**
+ * ServiceInstanceEntity GUID which uniquely identifies a created resource
+ * NOTE: This property will not be serialized. It can only be populated by the server.
+ */
+ readonly serviceId?: string;
/**
- * The direction of required traffic. Possible values include: 'Inbound', 'Outbound'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * Power state of the Service
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly direction?: TrafficDirection;
+ readonly powerState?: PowerState;
}
-/**
- * Service network profile payload
- */
+/** Service network profile payload */
export interface NetworkProfile {
- /**
- * Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- */
+ /** Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime */
serviceRuntimeSubnetId?: string;
- /**
- * Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- */
+ /** Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps */
appSubnetId?: string;
- /**
- * Azure Spring Cloud service reserved CIDR
- */
+ /** Azure Spring Cloud service reserved CIDR */
serviceCidr?: string;
- /**
- * Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- */
+ /** Name of the resource group containing network resources of Azure Spring Cloud Service Runtime */
serviceRuntimeNetworkResourceGroup?: string;
- /**
- * Name of the resource group containing network resources of Azure Spring Cloud Apps
- */
+ /** Name of the resource group containing network resources of Azure Spring Cloud Apps */
appNetworkResourceGroup?: string;
/**
* Desired outbound IP resources for Azure Spring Cloud instance.
- * **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 outboundIPs?: NetworkProfileOutboundIPs;
/**
* Required inbound or outbound traffics for Azure Spring Cloud instance.
- * **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 requiredTraffics?: RequiredTraffic[];
}
-/**
- * Service properties payload
- */
-export interface ClusterResourceProperties {
- /**
- * Provisioning state of the Service. Possible values include: 'Creating', 'Updating',
- * 'Deleting', 'Deleted', 'Succeeded', 'Failed', 'Moving', 'Moved', 'MoveFailed'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly provisioningState?: ProvisioningState;
- /**
- * Network profile of the Service
- */
- networkProfile?: NetworkProfile;
- /**
- * Version of the Service
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly version?: number;
+/** Desired outbound IP resources for Azure Spring Cloud instance. */
+export interface NetworkProfileOutboundIPs {
/**
- * ServiceInstanceEntity GUID which uniquely identifies a created resource
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * A list of public IP addresses.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly serviceId?: string;
+ readonly publicIPs?: string[];
}
-/**
- * Sku of Azure Spring Cloud
- */
-export interface Sku {
- /**
- * Name of the Sku
- */
- name?: string;
+/** Required inbound or outbound traffic for Azure Spring Cloud instance. */
+export interface RequiredTraffic {
/**
- * Tier of the Sku
+ * The protocol of required traffic
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- tier?: string;
+ readonly protocol?: string;
/**
- * Current capacity of the target resource
+ * The port of required traffic
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- capacity?: number;
-}
-
-/**
- * The core properties of ARM resources.
- */
-export interface Resource extends BaseResource {
+ readonly port?: number;
/**
- * Fully qualified resource Id for the resource.
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * The ip list of required traffic
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly id?: string;
+ readonly ips?: string[];
/**
- * The name of the resource.
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * The FQDN list of required traffic
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly name?: string;
+ readonly fqdns?: string[];
/**
- * The type of the resource.
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * The direction of required traffic
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- readonly type?: string;
+ readonly direction?: TrafficDirection;
}
-/**
- * The resource model definition for a ARM tracked top level resource.
- */
-export interface TrackedResource extends Resource {
- /**
- * The GEO location of the resource.
- */
- location?: string;
- /**
- * Tags of the service which is a list of key value pairs that describe the resource.
- */
- tags?: { [propertyName: string]: string };
+/** Sku of Azure Spring Cloud */
+export interface Sku {
+ /** Name of the Sku */
+ name?: string;
+ /** Tier of the Sku */
+ tier?: string;
+ /** Current capacity of the target resource */
+ capacity?: number;
}
-/**
- * Service resource
- */
-export interface ServiceResource extends TrackedResource {
- /**
- * Properties of the Service resource
- */
- properties?: ClusterResourceProperties;
- /**
- * Sku of the Service resource
- */
- sku?: Sku;
+/** An error response from the service. */
+export interface CloudError {
+ /** An error response from the service. */
+ error?: CloudErrorBody;
}
-/**
- * Managed identity properties retrieved from ARM request headers.
- */
-export interface ManagedIdentityProperties {
- /**
- * Type of the managed identity. Possible values include: 'None', 'SystemAssigned',
- * 'UserAssigned', 'SystemAssigned,UserAssigned'
- */
- type?: ManagedIdentityType;
- /**
- * Principal Id
- */
- principalId?: string;
- /**
- * Tenant Id
- */
- tenantId?: string;
+/** An error response from the 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[];
}
-/**
- * Error record of the config server settings
- */
-export interface ConfigServerSettingsErrorRecord {
- /**
- * The name of the config server settings error record
- */
- name?: string;
- /**
- * The uri of the config server settings error record
- */
- uri?: string;
- /**
- * The detail error messages of the record
- */
- messages?: string[];
+/** Test keys payload */
+export interface TestKeys {
+ /** Primary key */
+ primaryKey?: string;
+ /** Secondary key */
+ secondaryKey?: string;
+ /** Primary test endpoint */
+ primaryTestEndpoint?: string;
+ /** Secondary test endpoint */
+ secondaryTestEndpoint?: string;
+ /** Indicates whether the test endpoint feature enabled or not */
+ enabled?: boolean;
}
-/**
- * Validation result for config server settings
- */
-export interface ConfigServerSettingsValidateResult {
- /**
- * Indicate if the config server settings are valid
- */
- isValid?: boolean;
+/** Regenerate test key request payload */
+export interface RegenerateTestKeyRequestPayload {
+ /** Type of the test key */
+ keyType: TestKeyType;
+}
+
+/** Config server git properties payload */
+export interface ConfigServerProperties {
/**
- * The detail validation results
+ * State of the config server.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- details?: ConfigServerSettingsErrorRecord[];
+ readonly provisioningState?: ConfigServerState;
+ /** Error when apply config server settings. */
+ error?: ErrorModel;
+ /** Settings of config server. */
+ configServer?: ConfigServerSettings;
}
-/**
- * The error code compose of code and message.
- */
+/** The error code compose of code and message. */
export interface ErrorModel {
- /**
- * The code of error.
- */
+ /** The code of error. */
code?: string;
- /**
- * The message of error.
- */
+ /** The message of error. */
message?: string;
}
-/**
- * Git repository property payload
- */
-export interface GitPatternRepository {
- /**
- * Name of the repository
- */
- name: string;
- /**
- * Collection of pattern of the repository
- */
- pattern?: string[];
- /**
- * URI of the repository
- */
+/** The settings of config server. */
+export interface ConfigServerSettings {
+ /** Property of git environment. */
+ gitProperty?: ConfigServerGitProperty;
+}
+
+/** Property of git. */
+export interface ConfigServerGitProperty {
+ /** Repositories of git. */
+ repositories?: GitPatternRepository[];
+ /** URI of the repository */
uri: string;
- /**
- * Label of the repository
- */
+ /** Label of the repository */
label?: string;
- /**
- * Searching path of the repository
- */
+ /** Searching path of the repository */
searchPaths?: string[];
- /**
- * Username of git repository basic auth.
- */
+ /** Username of git repository basic auth. */
username?: string;
- /**
- * Password of git repository basic auth.
- */
+ /** Password of git repository basic auth. */
password?: string;
- /**
- * Public sshKey of git repository.
- */
+ /** Public sshKey of git repository. */
hostKey?: string;
- /**
- * SshKey algorithm of git repository.
- */
+ /** SshKey algorithm of git repository. */
hostKeyAlgorithm?: string;
- /**
- * Private sshKey algorithm of git repository.
- */
+ /** Private sshKey algorithm of git repository. */
privateKey?: string;
- /**
- * Strict host key checking or not.
- */
+ /** Strict host key checking or not. */
strictHostKeyChecking?: boolean;
}
-/**
- * Property of git.
- */
-export interface ConfigServerGitProperty {
- /**
- * Repositories of git.
- */
- repositories?: GitPatternRepository[];
- /**
- * URI of the repository
- */
+/** Git repository property payload */
+export interface GitPatternRepository {
+ /** Name of the repository */
+ name: string;
+ /** Collection of pattern of the repository */
+ pattern?: string[];
+ /** URI of the repository */
uri: string;
- /**
- * Label of the repository
- */
+ /** Label of the repository */
label?: string;
- /**
- * Searching path of the repository
- */
+ /** Searching path of the repository */
searchPaths?: string[];
- /**
- * Username of git repository basic auth.
- */
+ /** Username of git repository basic auth. */
username?: string;
- /**
- * Password of git repository basic auth.
- */
+ /** Password of git repository basic auth. */
password?: string;
- /**
- * Public sshKey of git repository.
- */
+ /** Public sshKey of git repository. */
hostKey?: string;
- /**
- * SshKey algorithm of git repository.
- */
+ /** SshKey algorithm of git repository. */
hostKeyAlgorithm?: string;
- /**
- * Private sshKey algorithm of git repository.
- */
+ /** Private sshKey algorithm of git repository. */
privateKey?: string;
- /**
- * Strict host key checking or not.
- */
+ /** Strict host key checking or not. */
strictHostKeyChecking?: boolean;
}
-/**
- * The settings of config server.
- */
-export interface ConfigServerSettings {
+/** Validation result for config server settings */
+export interface ConfigServerSettingsValidateResult {
+ /** Indicate if the config server settings are valid */
+ isValid?: boolean;
+ /** The detail validation results */
+ details?: ConfigServerSettingsErrorRecord[];
+}
+
+/** Error record of the config server settings */
+export interface ConfigServerSettingsErrorRecord {
+ /** The name of the config server settings error record */
+ name?: string;
+ /** The uri of the config server settings error record */
+ uri?: string;
+ /** The detail error messages of the record */
+ messages?: string[];
+}
+
+/** Monitoring Setting properties payload */
+export interface MonitoringSettingProperties {
/**
- * Property of git environment.
+ * State of the Monitoring Setting.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- gitProperty?: ConfigServerGitProperty;
+ readonly provisioningState?: MonitoringSettingState;
+ /** Error when apply Monitoring Setting changes. */
+ error?: ErrorModel;
+ /** Indicates whether enable the trace functionality, which will be deprecated since api version 2020-11-01-preview. Please leverage appInsightsInstrumentationKey to indicate if monitoringSettings enabled or not */
+ traceEnabled?: boolean;
+ /** Target application insight instrumentation key, null or whitespace include empty will disable monitoringSettings */
+ appInsightsInstrumentationKey?: string;
+ /** Indicates the sampling rate of application insight agent, should be in range [0.0, 100.0] */
+ appInsightsSamplingRate?: number;
+ /** Indicates the versions of application insight agent */
+ appInsightsAgentVersions?: ApplicationInsightsAgentVersions;
}
-/**
- * Config server git properties payload
- */
-export interface ConfigServerProperties {
+/** Application Insights agent versions properties payload */
+export interface ApplicationInsightsAgentVersions {
/**
- * State of the config server. Possible values include: 'NotAvailable', 'Deleted', 'Failed',
- * 'Succeeded', 'Updating'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly provisioningState?: ConfigServerState;
- /**
- * Error when apply config server settings.
- */
- error?: ErrorModel;
- /**
- * Settings of config server.
- */
- configServer?: ConfigServerSettings;
-}
-
-/**
- * The resource model definition for a ARM proxy resource. It will have everything other than
- * required location and tags.
- */
-export interface ProxyResource extends Resource {
-}
-
-/**
- * Config Server resource
- */
-export interface ConfigServerResource extends ProxyResource {
- /**
- * Properties of the Config Server resource
- */
- properties?: ConfigServerProperties;
-}
-
-/**
- * Application Insights agent versions properties payload
- */
-export interface ApplicationInsightsAgentVersions {
- /**
- * Indicates the version of application insight java agent
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * Indicates the version of application insight java agent
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
readonly java?: string;
}
-/**
- * Monitoring Setting properties payload
- */
-export interface MonitoringSettingProperties {
- /**
- * State of the Monitoring Setting. Possible values include: 'NotAvailable', 'Failed',
- * 'Succeeded', 'Updating'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly provisioningState?: MonitoringSettingState;
- /**
- * Error when apply Monitoring Setting changes.
- */
- error?: ErrorModel;
- /**
- * Indicates whether enable the trace functionality, which will be deprecated since api version
- * 2020-11-01-preview. Please leverage appInsightsInstrumentationKey to indicate if
- * monitoringSettings enabled or not
- */
- traceEnabled?: boolean;
- /**
- * Target application insight instrumentation key, null or whitespace include empty will disable
- * monitoringSettings
- */
- appInsightsInstrumentationKey?: string;
- /**
- * Indicates the sampling rate of application insight agent, should be in range [0.0, 100.0]
- */
- appInsightsSamplingRate?: number;
- /**
- * Indicates the versions of application insight agent
- */
- appInsightsAgentVersions?: ApplicationInsightsAgentVersions;
-}
-
-/**
- * Monitoring Setting resource
- */
-export interface MonitoringSettingResource extends ProxyResource {
- /**
- * Properties of the Monitoring Setting resource
- */
- properties?: MonitoringSettingProperties;
-}
-
-/**
- * Test keys payload
- */
-export interface TestKeys {
- /**
- * Primary key
- */
- primaryKey?: string;
- /**
- * Secondary key
- */
- secondaryKey?: string;
- /**
- * Primary test endpoint
- */
- primaryTestEndpoint?: string;
+/** App resource properties payload */
+export interface AppResourceProperties {
+ /** Indicates whether the App exposes public endpoint */
+ public?: boolean;
/**
- * Secondary test endpoint
+ * URL of the App
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- secondaryTestEndpoint?: string;
+ readonly url?: string;
/**
- * Indicates whether the test endpoint feature enabled or not
+ * Provisioning state of the App
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- enabled?: boolean;
-}
-
-/**
- * Regenerate test key request payload
- */
-export interface RegenerateTestKeyRequestPayload {
+ readonly provisioningState?: AppResourceProvisioningState;
+ /** Name of the active deployment of the App */
+ activeDeploymentName?: string;
+ /** Fully qualified dns Name. */
+ fqdn?: string;
+ /** Indicate if only https is allowed. */
+ httpsOnly?: boolean;
/**
- * Type of the test key. Possible values include: 'Primary', 'Secondary'
+ * Date time when the resource is created
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- keyType: TestKeyType;
+ readonly createdTime?: Date;
+ /** Temporary disk settings */
+ temporaryDisk?: TemporaryDisk;
+ /** Persistent disk settings */
+ persistentDisk?: PersistentDisk;
+ /** List of custom persistent disks */
+ customPersistentDisks?: CustomPersistentDiskResource[];
+ /** Indicate if end to end TLS is enabled. */
+ enableEndToEndTLS?: boolean;
+ /** Collection of loaded certificates */
+ loadedCertificates?: LoadedCertificate[];
}
-/**
- * Temporary disk payload
- */
+/** Temporary disk payload */
export interface TemporaryDisk {
- /**
- * Size of the temporary disk in GB
- */
+ /** Size of the temporary disk in GB */
sizeInGB?: number;
- /**
- * Mount path of the temporary disk
- */
+ /** Mount path of the temporary disk */
mountPath?: string;
}
-/**
- * Persistent disk payload
- */
+/** Persistent disk payload */
export interface PersistentDisk {
- /**
- * Size of the persistent disk in GB
- */
+ /** Size of the persistent disk in GB */
sizeInGB?: number;
/**
* Size of the used persistent disk in GB
- * **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 usedInGB?: number;
- /**
- * Mount path of the persistent disk
- */
+ /** Mount path of the persistent disk */
mountPath?: string;
}
-/**
- * App resource properties payload
- */
-export interface AppResourceProperties {
- /**
- * Indicates whether the App exposes public endpoint
- */
- publicProperty?: boolean;
- /**
- * URL of the App
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly url?: string;
- /**
- * Provisioning state of the App. Possible values include: 'Succeeded', 'Failed', 'Creating',
- * 'Updating'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly provisioningState?: AppResourceProvisioningState;
- /**
- * Name of the active deployment of the App
- */
- activeDeploymentName?: string;
- /**
- * Fully qualified dns Name.
- */
- fqdn?: string;
- /**
- * Indicate if only https is allowed.
- */
- httpsOnly?: boolean;
- /**
- * Indicate if end to end TLS is enabled.
- */
- enableEndToEndTLS?: boolean;
- /**
- * Date time when the resource is created
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly createdTime?: Date;
- /**
- * Temporary disk settings
- */
- temporaryDisk?: TemporaryDisk;
- /**
- * Persistent disk settings
- */
- persistentDisk?: PersistentDisk;
+/** Custom persistent disk resource payload. */
+export interface CustomPersistentDiskResource {
+ /** Properties of the custom persistent disk resource payload. */
+ customPersistentDiskProperties?: CustomPersistentDiskPropertiesUnion;
+ /** The resource id of Azure Spring Cloud Storage resource. */
+ storageId: string;
}
-/**
- * App resource payload
- */
-export interface AppResource extends ProxyResource {
- /**
- * Properties of the App resource
- */
- properties?: AppResourceProperties;
- /**
- * The Managed Identity type of the app resource
- */
- identity?: ManagedIdentityProperties;
+/** Custom persistent disk resource payload. */
+export interface CustomPersistentDiskProperties {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ type: "AzureFileVolume";
+ /** The mount path of the persistent disk. */
+ mountPath: string;
+ /** Indicates whether the persistent disk is a readonly one. */
+ readonly?: boolean;
+ /** These are the mount options for a persistent disk. */
+ mountOptions?: string[];
+}
+
+/** Loaded certificate payload */
+export interface LoadedCertificate {
+ /** Resource Id of loaded certificate */
+ resourceId: string;
+ /** Indicate whether the certificate will be loaded into default trust store, only work for Java runtime. */
+ loadTrustStore?: boolean;
+}
+
+/** Managed identity properties retrieved from ARM request headers. */
+export interface ManagedIdentityProperties {
+ /** Type of the managed identity */
+ type?: ManagedIdentityType;
+ /** Principal Id */
+ principalId?: string;
+ /** Tenant Id */
+ tenantId?: string;
+}
+
+/** Object that includes an array of App resources and a possible link for next set */
+export interface AppResourceCollection {
+ /** Collection of App resources */
+ value?: AppResource[];
/**
- * The GEO location of the application, always the same with its parent resource
+ * URL client should use to fetch the next page (per server side paging).
+ * It's null for now, added for future use.
*/
- location?: string;
+ nextLink?: string;
}
-/**
- * Resource upload definition payload
- */
+/** Resource upload definition payload */
export interface ResourceUploadDefinition {
- /**
- * Source relative path
- */
+ /** Source relative path */
relativePath?: string;
- /**
- * Upload URL
- */
+ /** Upload URL */
uploadUrl?: string;
}
-/**
- * Binding resource properties payload
- */
+/** Binding resource properties payload */
export interface BindingResourceProperties {
/**
* The name of the bound 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 resourceName?: string;
/**
* The standard Azure resource type of the bound 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 resourceType?: string;
- /**
- * The Azure resource id of the bound resource
- */
+ /** The Azure resource id of the bound resource */
resourceId?: string;
- /**
- * The key of the bound resource
- */
+ /** The key of the bound resource */
key?: string;
- /**
- * Binding parameters of the Binding resource
- */
- bindingParameters?: { [propertyName: string]: any };
+ /** Binding parameters of the Binding resource */
+ bindingParameters?: { [propertyName: string]: Record };
/**
* The generated Spring Boot property file for this binding. The secret will be deducted.
- * **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 generatedProperties?: string;
/**
* Creation time of the Binding 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 createdAt?: string;
/**
* Update time of the Binding 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 updatedAt?: string;
}
-/**
- * Binding resource payload
- */
-export interface BindingResource extends ProxyResource {
+/** Object that includes an array of Binding resources and a possible link for next set */
+export interface BindingResourceCollection {
+ /** Collection of Binding resources */
+ value?: BindingResource[];
/**
- * Properties of the Binding resource
+ * URL client should use to fetch the next page (per server side paging).
+ * It's null for now, added for future use.
*/
- properties?: BindingResourceProperties;
+ nextLink?: string;
}
-/**
- * Certificate resource payload.
- */
+/** Storage resource payload. */
+export interface StorageProperties {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ storageType: "StorageAccount";
+}
+
+/** Metadata pertaining to creation and last modification of the resource. */
+export interface SystemData {
+ /** The identity that created the resource. */
+ createdBy?: string;
+ /** The type of identity that created the resource. */
+ createdByType?: CreatedByType;
+ /** The timestamp of resource creation (UTC). */
+ createdAt?: Date;
+ /** The identity that last modified the resource. */
+ lastModifiedBy?: string;
+ /** The type of identity that last modified the resource. */
+ lastModifiedByType?: CreatedByType;
+ /** The timestamp of resource last modification (UTC) */
+ lastModifiedAt?: Date;
+}
+
+/** Collection compose of storage resources list and a possible link for next page. */
+export interface StorageResourceCollection {
+ /** The storage resources list. */
+ value?: StorageResource[];
+ /** The link to next page of storage list. */
+ nextLink?: string;
+}
+
+/** Certificate resource payload. */
export interface CertificateProperties {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ type: "KeyVaultCertificate" | "ContentCertificate";
/**
* The thumbprint of certificate.
- * **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 thumbprint?: string;
- /**
- * The vault uri of user key vault.
- */
- vaultUri: string;
- /**
- * The certificate name of key vault.
- */
- keyVaultCertName: string;
- /**
- * The certificate version of key vault.
- */
- certVersion?: string;
/**
* The issuer of certificate.
- * **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 issuer?: string;
/**
* The issue date of certificate.
- * **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 issuedDate?: string;
/**
* The expiration date of certificate.
- * **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 expirationDate?: string;
/**
* The activate date of certificate.
- * **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 activateDate?: string;
/**
* The subject name of certificate.
- * **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 subjectName?: string;
/**
* The domain list of certificate.
- * **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 dnsNames?: string[];
}
-/**
- * Certificate resource payload.
- */
-export interface CertificateResource extends ProxyResource {
- /**
- * Properties of the certificate resource payload.
- */
- properties?: CertificateProperties;
+/** Collection compose of certificate resources list and a possible link for next page. */
+export interface CertificateResourceCollection {
+ /** The certificate resources list. */
+ value?: CertificateResource[];
+ /** The link to next page of certificate list. */
+ nextLink?: string;
}
-/**
- * Name availability parameters payload
- */
+/** Name availability parameters payload */
export interface NameAvailabilityParameters {
- /**
- * Type of the resource to check name availability
- */
+ /** Type of the resource to check name availability */
type: string;
- /**
- * Name to be checked
- */
+ /** Name to be checked */
name: string;
}
-/**
- * Name availability result payload
- */
+/** Name availability result payload */
export interface NameAvailability {
- /**
- * Indicates whether the name is available
- */
+ /** Indicates whether the name is available */
nameAvailable?: boolean;
- /**
- * Reason why the name is not available
- */
+ /** Reason why the name is not available */
reason?: string;
- /**
- * Message why the name is not available
- */
+ /** Message why the name is not available */
message?: string;
}
-/**
- * Custom domain of app resource payload.
- */
+/** Custom domain of app resource payload. */
export interface CustomDomainProperties {
- /**
- * The thumbprint of bound certificate.
- */
+ /** The thumbprint of bound certificate. */
thumbprint?: string;
/**
* The app name of domain.
- * **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 appName?: string;
- /**
- * The bound certificate name of domain.
- */
+ /** The bound certificate name of domain. */
certName?: string;
}
-/**
- * Custom domain resource payload.
- */
-export interface CustomDomainResource extends ProxyResource {
- /**
- * Properties of the custom domain resource.
- */
- properties?: CustomDomainProperties;
+/** Collection compose of a custom domain resources list and a possible link for next page. */
+export interface CustomDomainResourceCollection {
+ /** The custom domain resources list. */
+ value?: CustomDomainResource[];
+ /** The link to next page of custom domain list. */
+ nextLink?: string;
}
-/**
- * Custom domain validate payload.
- */
+/** Custom domain validate payload. */
export interface CustomDomainValidatePayload {
- /**
- * Name to be validated
- */
+ /** Name to be validated */
name: string;
}
-/**
- * Validation result for custom domain.
- */
+/** Validation result for custom domain. */
export interface CustomDomainValidateResult {
- /**
- * Indicates if domain name is valid.
- */
+ /** Indicates if domain name is valid. */
isValid?: boolean;
- /**
- * Message of why domain name is invalid.
- */
+ /** Message of why domain name is invalid. */
message?: string;
}
-/**
- * Source information for a deployment
- */
-export interface UserSourceInfo {
+/** Deployment resource properties payload */
+export interface DeploymentResourceProperties {
+ /** Uploaded source information of the deployment. */
+ source?: UserSourceInfo;
/**
- * Type of the source uploaded. Possible values include: 'Jar', 'NetCoreZip', 'Source'
+ * App name of the deployment
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- type?: UserSourceType;
+ readonly appName?: string;
+ /** Deployment settings of the Deployment */
+ deploymentSettings?: DeploymentSettings;
/**
- * Relative path of the storage which stores the source
+ * Provisioning state of the Deployment
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- relativePath?: string;
+ readonly provisioningState?: DeploymentResourceProvisioningState;
/**
- * Version of the source
+ * Status of the Deployment
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- version?: string;
+ readonly status?: DeploymentResourceStatus;
/**
- * Selector for the artifact to be used for the deployment for multi-module projects. This should
- * be
- * the relative path to the target module/project.
+ * Indicates whether the Deployment is active
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- artifactSelector?: string;
-}
-
-/**
- * Deployment settings payload
- */
-export interface DeploymentSettings {
+ readonly active?: boolean;
/**
- * Required CPU, basic tier should be 1, standard tier should be in range (1, 4). Default value:
- * 1.
+ * Date time when the resource is created
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- cpu?: number;
+ readonly createdTime?: Date;
/**
- * Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in
- * range (1, 8). Default value: 1.
+ * Collection of instances belong to the Deployment
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- memoryInGB?: number;
+ readonly instances?: DeploymentInstance[];
+}
+
+/** Source information for a deployment */
+export interface UserSourceInfo {
+ /** Type of the source uploaded */
+ type?: UserSourceType;
+ /** Relative path of the storage which stores the source */
+ relativePath?: string;
+ /** Version of the source */
+ version?: string;
/**
- * JVM parameter
+ * Selector for the artifact to be used for the deployment for multi-module projects. This should be
+ * the relative path to the target module/project.
*/
+ artifactSelector?: string;
+ /** Custom container payload */
+ customContainer?: CustomContainer;
+}
+
+/** Custom container payload */
+export interface CustomContainer {
+ /** The name of the registry that contains the container image */
+ server?: string;
+ /** Container image of the custom container. This should be in the form of : without the server name of the registry */
+ containerImage?: string;
+ /** Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. */
+ command?: string[];
+ /** Arguments to the entrypoint. The docker image's CMD is used if this is not provided. */
+ args?: string[];
+ /** Credential of the image registry */
+ imageRegistryCredential?: ImageRegistryCredential;
+}
+
+/** Credential of the image registry */
+export interface ImageRegistryCredential {
+ /** The username of the image registry credential */
+ username?: string;
+ /** The password of the image registry credential */
+ password?: string;
+}
+
+/** Deployment settings payload */
+export interface DeploymentSettings {
+ /** Required CPU. This should be 1 for Basic tier, and in range [1, 4] for Standard tier. This is deprecated starting from API version 2021-09-01-preview. Please use the resourceRequests field to set the CPU size. */
+ cpu?: number;
+ /** Required Memory size in GB. This should be in range [1, 2] for Basic tier, and in range [1, 8] for Standard tier. This is deprecated starting from API version 2021-09-01-preview. Please use the resourceRequests field to set the the memory size. */
+ memoryInGB?: number;
+ /** The requested resource quantity for required CPU and Memory. It is recommended that using this field to represent the required CPU and Memory, the old field cpu and memoryInGB will be deprecated later. */
+ resourceRequests?: ResourceRequests;
+ /** JVM parameter */
jvmOptions?: string;
- /**
- * The path to the .NET executable relative to zip root
- */
+ /** The path to the .NET executable relative to zip root */
netCoreMainEntryPath?: string;
- /**
- * Collection of environment variables
- */
+ /** Collection of environment variables */
environmentVariables?: { [propertyName: string]: string };
- /**
- * Runtime version. Possible values include: 'Java_8', 'Java_11', 'NetCore_31'
- */
+ /** Runtime version */
runtimeVersion?: RuntimeVersion;
}
-/**
- * Deployment instance payload
- */
+/** Deployment resource request payload */
+export interface ResourceRequests {
+ /** Required CPU. 1 core can be represented by 1 or 1000m. This should be 500m or 1 for Basic tier, and {500m, 1, 2, 3, 4} for Standard tier. */
+ cpu?: string;
+ /** Required memory. 1 GB can be represented by 1Gi or 1024Mi. This should be {512Mi, 1Gi, 2Gi} for Basic tier, and {512Mi, 1Gi, 2Gi, ..., 8Gi} for Standard tier. */
+ memory?: string;
+}
+
+/** Deployment instance payload */
export interface DeploymentInstance {
/**
* Name of the deployment instance
- * **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;
/**
* Status of the deployment instance
- * **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 status?: string;
/**
* Failed reason of the deployment instance
- * **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 reason?: string;
/**
* Discovery status of the deployment instance
- * **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 discoveryStatus?: string;
/**
* Start time of the deployment instance
- * **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 startTime?: string;
}
-/**
- * Deployment resource properties payload
- */
-export interface DeploymentResourceProperties {
- /**
- * Uploaded source information of the deployment.
- */
- source?: UserSourceInfo;
+/** Object that includes an array of App resources and a possible link for next set */
+export interface DeploymentResourceCollection {
+ /** Collection of Deployment resources */
+ value?: DeploymentResource[];
/**
- * App name of the deployment
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly appName?: string;
- /**
- * Deployment settings of the Deployment
- */
- deploymentSettings?: DeploymentSettings;
- /**
- * Provisioning state of the Deployment. Possible values include: 'Creating', 'Updating',
- * 'Succeeded', 'Failed'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly provisioningState?: DeploymentResourceProvisioningState;
- /**
- * Status of the Deployment. Possible values include: 'Unknown', 'Stopped', 'Running', 'Failed',
- * 'Allocating', 'Upgrading', 'Compiling'
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly status?: DeploymentResourceStatus;
- /**
- * Indicates whether the Deployment is active
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly active?: boolean;
- /**
- * Date time when the resource is created
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly createdTime?: Date;
- /**
- * Collection of instances belong to the Deployment
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
+ * URL client should use to fetch the next page (per server side paging).
+ * It's null for now, added for future use.
*/
- readonly instances?: DeploymentInstance[];
+ nextLink?: string;
}
-/**
- * Deployment resource payload
- */
-export interface DeploymentResource extends ProxyResource {
- /**
- * Properties of the Deployment resource
- */
- properties?: DeploymentResourceProperties;
+/** Log file URL payload */
+export interface LogFileUrlResponse {
+ /** URL of the log file */
+ url: string;
+}
+
+/** Diagnostic parameters of diagnostic operations */
+export interface DiagnosticParameters {
+ /** App instance name */
+ appInstance?: string;
+ /** Your target file path in your own BYOS */
+ filePath?: string;
+ /** Duration of your JFR. 1 min can be represented by 1m or 60s. */
+ duration?: string;
+}
+
+/** Object that includes an array of Service resources and a possible link for next set */
+export interface ServiceResourceList {
+ /** Collection of Service resources */
+ value?: ServiceResource[];
/**
- * Sku of the Deployment resource
+ * URL client should use to fetch the next page (per server side paging).
+ * It's null for now, added for future use.
*/
- sku?: Sku;
+ nextLink?: string;
}
-/**
- * Log file URL payload
- */
-export interface LogFileUrlResponse {
+/** Available operations of the service */
+export interface AvailableOperations {
+ /** Collection of available operation details */
+ value?: OperationDetail[];
/**
- * URL of the log file
+ * URL client should use to fetch the next page (per server side paging).
+ * It's null for now, added for future use.
*/
- url: string;
+ nextLink?: string;
}
-/**
- * Operation display payload
- */
+/** Operation detail payload */
+export interface OperationDetail {
+ /** Name of the operation */
+ name?: string;
+ /** Indicates whether the operation is a data action */
+ isDataAction?: boolean;
+ /** Display of the operation */
+ display?: OperationDisplay;
+ /** Origin of the operation */
+ origin?: string;
+ /** Properties of the operation */
+ properties?: OperationProperties;
+}
+
+/** Operation display payload */
export interface OperationDisplay {
- /**
- * Resource provider of the operation
- */
+ /** Resource provider of the operation */
provider?: string;
- /**
- * Resource of the operation
- */
+ /** Resource of the operation */
resource?: string;
- /**
- * Localized friendly name for the operation
- */
+ /** Localized friendly name for the operation */
operation?: string;
- /**
- * Localized friendly description for the operation
- */
+ /** Localized friendly description for the operation */
description?: string;
}
-/**
- * Specifications of the Log for Azure Monitoring
- */
-export interface LogSpecification {
- /**
- * Name of the log
- */
- name?: string;
- /**
- * Localized friendly display name of the log
- */
- displayName?: string;
- /**
- * Blob duration of the log
- */
- blobDuration?: string;
+/** Extra Operation properties */
+export interface OperationProperties {
+ /** Service specifications of the operation */
+ serviceSpecification?: ServiceSpecification;
}
-/**
- * Specifications of the Dimension of metrics
- */
-export interface MetricDimension {
- /**
- * Name of the dimension
- */
+/** Service specification payload */
+export interface ServiceSpecification {
+ /** Specifications of the Log for Azure Monitoring */
+ logSpecifications?: LogSpecification[];
+ /** Specifications of the Metrics for Azure Monitoring */
+ metricSpecifications?: MetricSpecification[];
+}
+
+/** Specifications of the Log for Azure Monitoring */
+export interface LogSpecification {
+ /** Name of the log */
name?: string;
- /**
- * Localized friendly display name of the dimension
- */
+ /** Localized friendly display name of the log */
displayName?: string;
+ /** Blob duration of the log */
+ blobDuration?: string;
}
-/**
- * Specifications of the Metrics for Azure Monitoring
- */
+/** Specifications of the Metrics for Azure Monitoring */
export interface MetricSpecification {
- /**
- * Name of the metric
- */
+ /** Name of the metric */
name?: string;
- /**
- * Localized friendly display name of the metric
- */
+ /** Localized friendly display name of the metric */
displayName?: string;
- /**
- * Localized friendly description of the metric
- */
+ /** Localized friendly description of the metric */
displayDescription?: string;
- /**
- * Unit that makes sense for the metric
- */
+ /** Unit that makes sense for the metric */
unit?: string;
- /**
- * Name of the metric category that the metric belongs to. A metric can only belong to a single
- * category.
- */
+ /** Name of the metric category that the metric belongs to. A metric can only belong to a single category. */
category?: string;
- /**
- * Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count.
- */
+ /** Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count. */
aggregationType?: string;
- /**
- * Supported aggregation types
- */
+ /** Supported aggregation types */
supportedAggregationTypes?: string[];
- /**
- * Supported time grain types
- */
+ /** Supported time grain types */
supportedTimeGrainTypes?: string[];
- /**
- * Optional. If set to true, then zero will be returned for time duration where no metric is
- * emitted/published.
- */
+ /** Optional. If set to true, then zero will be returned for time duration where no metric is emitted/published. */
fillGapWithZero?: boolean;
- /**
- * Dimensions of the metric
- */
+ /** Dimensions of the metric */
dimensions?: MetricDimension[];
+ /** Name of the MDM namespace. Optional. */
+ sourceMdmNamespace?: string;
}
-/**
- * Service specification payload
- */
-export interface ServiceSpecification {
- /**
- * Specifications of the Log for Azure Monitoring
- */
- logSpecifications?: LogSpecification[];
- /**
- * Specifications of the Metrics for Azure Monitoring
- */
- metricSpecifications?: MetricSpecification[];
+/** Specifications of the Dimension of metrics */
+export interface MetricDimension {
+ /** Name of the dimension */
+ name?: string;
+ /** Localized friendly display name of the dimension */
+ displayName?: string;
+ /** Whether this dimension should be included for the Shoebox export scenario */
+ toBeExportedForShoebox?: boolean;
}
-/**
- * Extra Operation properties
- */
-export interface OperationProperties {
+export interface AvailableRuntimeVersions {
/**
- * Service specifications of the operation
+ * A list of all supported runtime versions.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- serviceSpecification?: ServiceSpecification;
+ readonly value?: SupportedRuntimeVersion[];
}
-/**
- * Operation detail payload
- */
-export interface OperationDetail {
+/** Supported deployment runtime version descriptor. */
+export interface SupportedRuntimeVersion {
+ /** The raw value which could be passed to deployment CRUD operations. */
+ value?: SupportedRuntimeValue;
+ /** The platform of this runtime version (possible values: "Java" or ".NET"). */
+ platform?: SupportedRuntimePlatform;
+ /** The detailed version (major.minor) of the platform. */
+ version?: string;
+}
+
+/** Object that includes an array of Azure Spring Cloud SKU and a possible link for next set */
+export interface ResourceSkuCollection {
+ /** Collection of resource SKU */
+ value?: ResourceSku[];
/**
- * Name of the operation
+ * URL client should use to fetch the next page (per server side paging).
+ * It's null for now, added for future use.
*/
+ nextLink?: string;
+}
+
+/** Describes an available Azure Spring Cloud SKU. */
+export interface ResourceSku {
+ /** Gets the type of resource the SKU applies to. */
+ resourceType?: string;
+ /** Gets the name of SKU. */
name?: string;
+ /** Gets the tier of SKU. */
+ tier?: string;
+ /** Gets the capacity of SKU. */
+ capacity?: SkuCapacity;
+ /** Gets the set of locations that the SKU is available. */
+ locations?: string[];
+ /** Gets a list of locations and availability zones in those locations where the SKU is available. */
+ locationInfo?: ResourceSkuLocationInfo[];
/**
- * Indicates whether the operation is a data action
- */
- isDataAction?: boolean;
- /**
- * Display of the operation
- */
- display?: OperationDisplay;
- /**
- * Origin of the operation
- */
- origin?: string;
- /**
- * Properties of the operation
+ * Gets the restrictions because of which SKU cannot be used. This is
+ * empty if there are no restrictions.
*/
- properties?: OperationProperties;
+ restrictions?: ResourceSkuRestrictions[];
}
-/**
- * The SKU capacity
- */
+/** The SKU capacity */
export interface SkuCapacity {
- /**
- * Gets or sets the minimum.
- */
+ /** Gets or sets the minimum. */
minimum: number;
- /**
- * Gets or sets the maximum.
- */
+ /** Gets or sets the maximum. */
maximum?: number;
- /**
- * Gets or sets the default.
- */
+ /** Gets or sets the default. */
default?: number;
- /**
- * Gets or sets the type of the scale. Possible values include: 'None', 'Manual', 'Automatic'
- */
+ /** Gets or sets the type of the scale. */
scaleType?: SkuScaleType;
}
-/**
- * An interface representing ResourceSkuCapabilities.
- */
-export interface ResourceSkuCapabilities {
- /**
- * Gets an invariant to describe the feature.
- */
- name?: string;
- /**
- * Gets an invariant if the feature is measured by quantity.
- */
- value?: string;
+/** Locations and availability zones where the SKU is available */
+export interface ResourceSkuLocationInfo {
+ /** Gets location of the SKU */
+ location?: string;
+ /** Gets list of availability zones where the SKU is supported. */
+ zones?: string[];
+ /** Gets details of capabilities available to a SKU in specific zones. */
+ zoneDetails?: ResourceSkuZoneDetails[];
}
-/**
- * Details of capabilities available to a SKU in specific zones
- */
+/** Details of capabilities available to a SKU in specific zones */
export interface ResourceSkuZoneDetails {
/**
* Gets the set of zones that the SKU is available in with the
@@ -1159,1773 +941,1135 @@ export interface ResourceSkuZoneDetails {
capabilities?: ResourceSkuCapabilities[];
}
-/**
- * Locations and availability zones where the SKU is available
- */
-export interface ResourceSkuLocationInfo {
- /**
- * Gets location of the SKU
- */
- location?: string;
- /**
- * Gets list of availability zones where the SKU is supported.
- */
- zones?: string[];
- /**
- * Gets details of capabilities available to a SKU in specific zones.
- */
- zoneDetails?: ResourceSkuZoneDetails[];
-}
-
-/**
- * Information about the restriction where the SKU cannot be used
- */
-export interface ResourceSkuRestrictionInfo {
- /**
- * Gets locations where the SKU is restricted
- */
- locations?: string[];
- /**
- * Gets list of availability zones where the SKU is restricted.
- */
- zones?: string[];
+export interface ResourceSkuCapabilities {
+ /** Gets an invariant to describe the feature. */
+ name?: string;
+ /** Gets an invariant if the feature is measured by quantity. */
+ value?: string;
}
-/**
- * Restrictions where the SKU cannot be used
- */
+/** Restrictions where the SKU cannot be used */
export interface ResourceSkuRestrictions {
- /**
- * Gets the type of restrictions. Possible values include: 'Location', 'Zone'
- */
+ /** Gets the type of restrictions. Possible values include: 'Location', 'Zone' */
type?: ResourceSkuRestrictionsType;
/**
* Gets the value of restrictions. If the restriction type is set to
* location. This would be different locations where the SKU is restricted.
*/
values?: string[];
- /**
- * Gets the information about the restriction where the SKU cannot be used.
- */
+ /** Gets the information about the restriction where the SKU cannot be used. */
restrictionInfo?: ResourceSkuRestrictionInfo;
- /**
- * Gets the reason for restriction. Possible values include: 'QuotaId',
- * 'NotAvailableForSubscription'
- */
+ /** Gets the reason for restriction. Possible values include: 'QuotaId', 'NotAvailableForSubscription' */
reasonCode?: ResourceSkuRestrictionsReasonCode;
}
-/**
- * Describes an available Azure Spring Cloud SKU.
- */
-export interface ResourceSku {
- /**
- * Gets the type of resource the SKU applies to.
- */
- resourceType?: string;
- /**
- * Gets the name of SKU.
- */
- name?: string;
- /**
- * Gets the tier of SKU.
- */
- tier?: string;
- /**
- * Gets the capacity of SKU.
- */
- capacity?: SkuCapacity;
- /**
- * Gets the set of locations that the SKU is available.
- */
+/** Information about the restriction where the SKU cannot be used */
+export interface ResourceSkuRestrictionInfo {
+ /** Gets locations where the SKU is restricted */
locations?: string[];
- /**
- * Gets a list of locations and availability zones in those locations where the SKU is available.
- */
- locationInfo?: ResourceSkuLocationInfo[];
- /**
- * Gets the restrictions because of which SKU cannot be used. This is
- * empty if there are no restrictions.
- */
- restrictions?: ResourceSkuRestrictions[];
+ /** Gets list of availability zones where the SKU is restricted. */
+ zones?: string[];
}
-/**
- * Supported deployment runtime version descriptor.
- */
-export interface SupportedRuntimeVersion {
- /**
- * The raw value which could be passed to deployment CRUD operations. Possible values include:
- * 'Java_8', 'Java_11', 'NetCore_31'
- */
- value?: SupportedRuntimeValue;
- /**
- * The platform of this runtime version (possible values: "Java" or ".NET"). Possible values
- * include: 'Java', '.NET Core'
- */
- platform?: SupportedRuntimePlatform;
+/** The resource model definition for a ARM tracked top level resource. */
+export type TrackedResource = Resource & {
+ /** The GEO location of the resource. */
+ location?: string;
+ /** Tags of the service which is a list of key value pairs that describe the resource. */
+ tags?: { [propertyName: string]: string };
+};
+
+/** The resource model definition for a ARM proxy resource. It will have everything other than required location and tags. */
+export type ProxyResource = Resource & {};
+
+/** The properties of the Azure File volume. Azure File shares are mounted as volumes. */
+export type AzureFileVolume = CustomPersistentDiskProperties & {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ type: "AzureFileVolume";
+ /** The share name of the Azure File share. */
+ shareName: string;
+};
+
+/** storage resource of type Azure Storage Account. */
+export type StorageAccount = StorageProperties & {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ storageType: "StorageAccount";
+ /** The account name of the Azure Storage Account. */
+ accountName: string;
+ /** The account key of the Azure Storage Account. */
+ accountKey: string;
+};
+
+/** Properties of certificate imported from key vault. */
+export type KeyVaultCertificateProperties = CertificateProperties & {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ type: "KeyVaultCertificate";
+ /** The vault uri of user key vault. */
+ vaultUri: string;
+ /** The certificate name of key vault. */
+ keyVaultCertName: string;
+ /** The certificate version of key vault. */
+ certVersion?: string;
+ /** Optional. If set to true, it will not import private key from key vault. */
+ excludePrivateKey?: boolean;
+};
+
+/** Properties of certificate imported from key vault. */
+export type ContentCertificateProperties = CertificateProperties & {
+ /** Polymorphic discriminator, which specifies the different types this object can be */
+ type: "ContentCertificate";
+ /** The content of uploaded certificate. */
+ content: string;
+};
+
+/** Service resource */
+export type ServiceResource = TrackedResource & {
+ /** Properties of the Service resource */
+ properties?: ClusterResourceProperties;
+ /** Sku of the Service resource */
+ sku?: Sku;
+};
+
+/** Config Server resource */
+export type ConfigServerResource = ProxyResource & {
+ /** Properties of the Config Server resource */
+ properties?: ConfigServerProperties;
+};
+
+/** Monitoring Setting resource */
+export type MonitoringSettingResource = ProxyResource & {
+ /** Properties of the Monitoring Setting resource */
+ properties?: MonitoringSettingProperties;
+};
+
+/** App resource payload */
+export type AppResource = ProxyResource & {
+ /** Properties of the App resource */
+ properties?: AppResourceProperties;
+ /** The Managed Identity type of the app resource */
+ identity?: ManagedIdentityProperties;
+ /** The GEO location of the application, always the same with its parent resource */
+ location?: string;
+};
+
+/** Binding resource payload */
+export type BindingResource = ProxyResource & {
+ /** Properties of the Binding resource */
+ properties?: BindingResourceProperties;
+};
+
+/** Storage resource payload. */
+export type StorageResource = ProxyResource & {
+ /** Properties of the storage resource payload. */
+ properties?: StoragePropertiesUnion;
/**
- * The detailed version (major.minor) of the platform.
+ * Metadata pertaining to creation and last modification of the resource.
+ * NOTE: This property will not be serialized. It can only be populated by the server.
*/
- version?: string;
+ readonly systemData?: SystemData;
+};
+
+/** Certificate resource payload. */
+export type CertificateResource = ProxyResource & {
+ /** Properties of the certificate resource payload. */
+ properties?: CertificatePropertiesUnion;
+};
+
+/** Custom domain resource payload. */
+export type CustomDomainResource = ProxyResource & {
+ /** Properties of the custom domain resource. */
+ properties?: CustomDomainProperties;
+};
+
+/** Deployment resource payload */
+export type DeploymentResource = ProxyResource & {
+ /** Properties of the Deployment resource */
+ properties?: DeploymentResourceProperties;
+ /** Sku of the Deployment resource */
+ sku?: Sku;
+};
+
+/** Known values of {@link ProvisioningState} that the service accepts. */
+export enum KnownProvisioningState {
+ Creating = "Creating",
+ Updating = "Updating",
+ Deleting = "Deleting",
+ Deleted = "Deleted",
+ Succeeded = "Succeeded",
+ Failed = "Failed",
+ Moving = "Moving",
+ Moved = "Moved",
+ MoveFailed = "MoveFailed"
}
/**
- * An interface representing AvailableRuntimeVersions.
+ * Defines values for ProvisioningState. \
+ * {@link KnownProvisioningState} can be used interchangeably with ProvisioningState,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Creating** \
+ * **Updating** \
+ * **Deleting** \
+ * **Deleted** \
+ * **Succeeded** \
+ * **Failed** \
+ * **Moving** \
+ * **Moved** \
+ * **MoveFailed**
*/
-export interface AvailableRuntimeVersions {
- /**
- * A list of all supported runtime versions.
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
- */
- readonly value?: SupportedRuntimeVersion[];
+export type ProvisioningState = string;
+
+/** Known values of {@link TrafficDirection} that the service accepts. */
+export enum KnownTrafficDirection {
+ Inbound = "Inbound",
+ Outbound = "Outbound"
}
/**
- * Optional Parameters.
+ * Defines values for TrafficDirection. \
+ * {@link KnownTrafficDirection} can be used interchangeably with TrafficDirection,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Inbound** \
+ * **Outbound**
*/
-export interface AppsGetOptionalParams extends msRest.RequestOptionsBase {
- /**
- * Indicates whether sync status
- */
- syncStatus?: string;
+export type TrafficDirection = string;
+
+/** Known values of {@link PowerState} that the service accepts. */
+export enum KnownPowerState {
+ Running = "Running",
+ Stopped = "Stopped"
}
/**
- * Optional Parameters.
+ * Defines values for PowerState. \
+ * {@link KnownPowerState} can be used interchangeably with PowerState,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Running** \
+ * **Stopped**
*/
-export interface DeploymentsListOptionalParams extends msRest.RequestOptionsBase {
- /**
- * Version of the deployments to be listed
- */
- version?: string[];
+export type PowerState = string;
+
+/** Known values of {@link TestKeyType} that the service accepts. */
+export enum KnownTestKeyType {
+ Primary = "Primary",
+ Secondary = "Secondary"
}
/**
- * Optional Parameters.
+ * Defines values for TestKeyType. \
+ * {@link KnownTestKeyType} can be used interchangeably with TestKeyType,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Primary** \
+ * **Secondary**
*/
-export interface DeploymentsListForClusterOptionalParams extends msRest.RequestOptionsBase {
- /**
- * Version of the deployments to be listed
- */
- version?: string[];
+export type TestKeyType = string;
+
+/** Known values of {@link ConfigServerState} that the service accepts. */
+export enum KnownConfigServerState {
+ NotAvailable = "NotAvailable",
+ Deleted = "Deleted",
+ Failed = "Failed",
+ Succeeded = "Succeeded",
+ Updating = "Updating"
}
/**
- * Optional Parameters.
+ * Defines values for ConfigServerState. \
+ * {@link KnownConfigServerState} can be used interchangeably with ConfigServerState,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **NotAvailable** \
+ * **Deleted** \
+ * **Failed** \
+ * **Succeeded** \
+ * **Updating**
*/
-export interface DeploymentsListNextOptionalParams extends msRest.RequestOptionsBase {
- /**
- * Version of the deployments to be listed
- */
- version?: string[];
+export type ConfigServerState = string;
+
+/** Known values of {@link MonitoringSettingState} that the service accepts. */
+export enum KnownMonitoringSettingState {
+ NotAvailable = "NotAvailable",
+ Failed = "Failed",
+ Succeeded = "Succeeded",
+ Updating = "Updating"
}
/**
- * Optional Parameters.
+ * Defines values for MonitoringSettingState. \
+ * {@link KnownMonitoringSettingState} can be used interchangeably with MonitoringSettingState,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **NotAvailable** \
+ * **Failed** \
+ * **Succeeded** \
+ * **Updating**
*/
-export interface DeploymentsListForClusterNextOptionalParams extends msRest.RequestOptionsBase {
- /**
- * Version of the deployments to be listed
- */
- version?: string[];
+export type MonitoringSettingState = string;
+
+/** Known values of {@link AppResourceProvisioningState} that the service accepts. */
+export enum KnownAppResourceProvisioningState {
+ Succeeded = "Succeeded",
+ Failed = "Failed",
+ Creating = "Creating",
+ Updating = "Updating"
}
/**
- * An interface representing AppPlatformManagementClientOptions.
+ * Defines values for AppResourceProvisioningState. \
+ * {@link KnownAppResourceProvisioningState} can be used interchangeably with AppResourceProvisioningState,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Succeeded** \
+ * **Failed** \
+ * **Creating** \
+ * **Updating**
*/
-export interface AppPlatformManagementClientOptions extends AzureServiceClientOptions {
- baseUri?: string;
+export type AppResourceProvisioningState = string;
+
+/** Known values of {@link ManagedIdentityType} that the service accepts. */
+export enum KnownManagedIdentityType {
+ None = "None",
+ SystemAssigned = "SystemAssigned",
+ UserAssigned = "UserAssigned",
+ SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"
}
/**
- * @interface
- * Object that includes an array of Service resources and a possible link for next set
- * @extends Array
+ * Defines values for ManagedIdentityType. \
+ * {@link KnownManagedIdentityType} can be used interchangeably with ManagedIdentityType,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **None** \
+ * **SystemAssigned** \
+ * **UserAssigned** \
+ * **SystemAssigned,UserAssigned**
*/
-export interface ServiceResourceList extends Array {
- /**
- * URL client should use to fetch the next page (per server side paging).
- * It's null for now, added for future use.
- */
- nextLink?: string;
+export type ManagedIdentityType = string;
+
+/** Known values of {@link CreatedByType} that the service accepts. */
+export enum KnownCreatedByType {
+ User = "User",
+ Application = "Application",
+ ManagedIdentity = "ManagedIdentity",
+ Key = "Key"
+}
+
+/**
+ * Defines values for CreatedByType. \
+ * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **User** \
+ * **Application** \
+ * **ManagedIdentity** \
+ * **Key**
+ */
+export type CreatedByType = string;
+
+/** Known values of {@link UserSourceType} that the service accepts. */
+export enum KnownUserSourceType {
+ Jar = "Jar",
+ NetCoreZip = "NetCoreZip",
+ Source = "Source",
+ Container = "Container"
}
/**
- * @interface
- * Object that includes an array of App resources and a possible link for next set
- * @extends Array
+ * Defines values for UserSourceType. \
+ * {@link KnownUserSourceType} can be used interchangeably with UserSourceType,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Jar** \
+ * **NetCoreZip** \
+ * **Source** \
+ * **Container**
*/
-export interface AppResourceCollection extends Array {
- /**
- * URL client should use to fetch the next page (per server side paging).
- * It's null for now, added for future use.
- */
- nextLink?: string;
+export type UserSourceType = string;
+
+/** Known values of {@link RuntimeVersion} that the service accepts. */
+export enum KnownRuntimeVersion {
+ Java8 = "Java_8",
+ Java11 = "Java_11",
+ NetCore31 = "NetCore_31"
}
/**
- * @interface
- * Object that includes an array of Binding resources and a possible link for next set
- * @extends Array
+ * Defines values for RuntimeVersion. \
+ * {@link KnownRuntimeVersion} can be used interchangeably with RuntimeVersion,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Java_8** \
+ * **Java_11** \
+ * **NetCore_31**
*/
-export interface BindingResourceCollection extends Array {
- /**
- * URL client should use to fetch the next page (per server side paging).
- * It's null for now, added for future use.
- */
- nextLink?: string;
+export type RuntimeVersion = string;
+
+/** Known values of {@link DeploymentResourceProvisioningState} that the service accepts. */
+export enum KnownDeploymentResourceProvisioningState {
+ Creating = "Creating",
+ Updating = "Updating",
+ Succeeded = "Succeeded",
+ Failed = "Failed"
}
/**
- * @interface
- * Collection compose of certificate resources list and a possible link for next page.
- * @extends Array
+ * Defines values for DeploymentResourceProvisioningState. \
+ * {@link KnownDeploymentResourceProvisioningState} can be used interchangeably with DeploymentResourceProvisioningState,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Creating** \
+ * **Updating** \
+ * **Succeeded** \
+ * **Failed**
*/
-export interface CertificateResourceCollection extends Array {
- /**
- * The link to next page of certificate list.
- */
- nextLink?: string;
+export type DeploymentResourceProvisioningState = string;
+
+/** Known values of {@link DeploymentResourceStatus} that the service accepts. */
+export enum KnownDeploymentResourceStatus {
+ Unknown = "Unknown",
+ Stopped = "Stopped",
+ Running = "Running",
+ Failed = "Failed",
+ Allocating = "Allocating",
+ Upgrading = "Upgrading",
+ Compiling = "Compiling"
}
/**
- * @interface
- * Collection compose of a custom domain resources list and a possible link for next page.
- * @extends Array
+ * Defines values for DeploymentResourceStatus. \
+ * {@link KnownDeploymentResourceStatus} can be used interchangeably with DeploymentResourceStatus,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Unknown** \
+ * **Stopped** \
+ * **Running** \
+ * **Failed** \
+ * **Allocating** \
+ * **Upgrading** \
+ * **Compiling**
*/
-export interface CustomDomainResourceCollection extends Array {
- /**
- * The link to next page of custom domain list.
- */
- nextLink?: string;
+export type DeploymentResourceStatus = string;
+
+/** Known values of {@link SupportedRuntimeValue} that the service accepts. */
+export enum KnownSupportedRuntimeValue {
+ Java8 = "Java_8",
+ Java11 = "Java_11",
+ NetCore31 = "NetCore_31"
}
/**
- * @interface
- * Object that includes an array of App resources and a possible link for next set
- * @extends Array
+ * Defines values for SupportedRuntimeValue. \
+ * {@link KnownSupportedRuntimeValue} can be used interchangeably with SupportedRuntimeValue,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Java_8** \
+ * **Java_11** \
+ * **NetCore_31**
*/
-export interface DeploymentResourceCollection extends Array {
- /**
- * URL client should use to fetch the next page (per server side paging).
- * It's null for now, added for future use.
- */
- nextLink?: string;
+export type SupportedRuntimeValue = string;
+
+/** Known values of {@link SupportedRuntimePlatform} that the service accepts. */
+export enum KnownSupportedRuntimePlatform {
+ Java = "Java",
+ NETCore = ".NET Core"
}
/**
- * @interface
- * Available operations of the service
- * @extends Array
+ * Defines values for SupportedRuntimePlatform. \
+ * {@link KnownSupportedRuntimePlatform} can be used interchangeably with SupportedRuntimePlatform,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Java** \
+ * **.NET Core**
*/
-export interface AvailableOperations extends Array {
- /**
- * URL client should use to fetch the next page (per server side paging).
- * It's null for now, added for future use.
- */
- nextLink?: string;
+export type SupportedRuntimePlatform = string;
+
+/** Known values of {@link SkuScaleType} that the service accepts. */
+export enum KnownSkuScaleType {
+ None = "None",
+ Manual = "Manual",
+ Automatic = "Automatic"
}
/**
- * @interface
- * Object that includes an array of Azure Spring Cloud SKU and a possible link for next set
- * @extends Array
+ * Defines values for SkuScaleType. \
+ * {@link KnownSkuScaleType} can be used interchangeably with SkuScaleType,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **None** \
+ * **Manual** \
+ * **Automatic**
*/
-export interface ResourceSkuCollection extends Array {
- /**
- * URL client should use to fetch the next page (per server side paging).
- * It's null for now, added for future use.
- */
- nextLink?: string;
+export type SkuScaleType = string;
+
+/** Known values of {@link ResourceSkuRestrictionsType} that the service accepts. */
+export enum KnownResourceSkuRestrictionsType {
+ Location = "Location",
+ Zone = "Zone"
}
/**
- * Defines values for ProvisioningState.
- * Possible values include: 'Creating', 'Updating', 'Deleting', 'Deleted', 'Succeeded', 'Failed',
- * 'Moving', 'Moved', 'MoveFailed'
- * @readonly
- * @enum {string}
+ * Defines values for ResourceSkuRestrictionsType. \
+ * {@link KnownResourceSkuRestrictionsType} can be used interchangeably with ResourceSkuRestrictionsType,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **Location** \
+ * **Zone**
*/
-export type ProvisioningState = 'Creating' | 'Updating' | 'Deleting' | 'Deleted' | 'Succeeded' | 'Failed' | 'Moving' | 'Moved' | 'MoveFailed';
+export type ResourceSkuRestrictionsType = string;
-/**
- * Defines values for TrafficDirection.
- * Possible values include: 'Inbound', 'Outbound'
- * @readonly
- * @enum {string}
- */
-export type TrafficDirection = 'Inbound' | 'Outbound';
+/** Known values of {@link ResourceSkuRestrictionsReasonCode} that the service accepts. */
+export enum KnownResourceSkuRestrictionsReasonCode {
+ QuotaId = "QuotaId",
+ NotAvailableForSubscription = "NotAvailableForSubscription"
+}
/**
- * Defines values for ManagedIdentityType.
- * Possible values include: 'None', 'SystemAssigned', 'UserAssigned', 'SystemAssigned,UserAssigned'
- * @readonly
- * @enum {string}
+ * Defines values for ResourceSkuRestrictionsReasonCode. \
+ * {@link KnownResourceSkuRestrictionsReasonCode} can be used interchangeably with ResourceSkuRestrictionsReasonCode,
+ * this enum contains the known values that the service supports.
+ * ### Known values supported by the service
+ * **QuotaId** \
+ * **NotAvailableForSubscription**
*/
-export type ManagedIdentityType = 'None' | 'SystemAssigned' | 'UserAssigned' | 'SystemAssigned,UserAssigned';
+export type ResourceSkuRestrictionsReasonCode = string;
-/**
- * Defines values for ConfigServerState.
- * Possible values include: 'NotAvailable', 'Deleted', 'Failed', 'Succeeded', 'Updating'
- * @readonly
- * @enum {string}
- */
-export type ConfigServerState = 'NotAvailable' | 'Deleted' | 'Failed' | 'Succeeded' | 'Updating';
+/** Optional parameters. */
+export interface ServicesGetOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Defines values for MonitoringSettingState.
- * Possible values include: 'NotAvailable', 'Failed', 'Succeeded', 'Updating'
- * @readonly
- * @enum {string}
- */
-export type MonitoringSettingState = 'NotAvailable' | 'Failed' | 'Succeeded' | 'Updating';
+/** Contains response data for the get operation. */
+export type ServicesGetResponse = ServiceResource;
-/**
- * Defines values for TestKeyType.
- * Possible values include: 'Primary', 'Secondary'
- * @readonly
- * @enum {string}
- */
-export type TestKeyType = 'Primary' | 'Secondary';
+/** Optional parameters. */
+export interface ServicesCreateOrUpdateOptionalParams
+ 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;
+}
-/**
- * Defines values for AppResourceProvisioningState.
- * Possible values include: 'Succeeded', 'Failed', 'Creating', 'Updating'
- * @readonly
- * @enum {string}
- */
-export type AppResourceProvisioningState = 'Succeeded' | 'Failed' | 'Creating' | 'Updating';
+/** Contains response data for the createOrUpdate operation. */
+export type ServicesCreateOrUpdateResponse = ServiceResource;
-/**
- * Defines values for UserSourceType.
- * Possible values include: 'Jar', 'NetCoreZip', 'Source'
- * @readonly
- * @enum {string}
- */
-export type UserSourceType = 'Jar' | 'NetCoreZip' | 'Source';
+/** Optional parameters. */
+export interface ServicesDeleteOptionalParams
+ 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;
+}
-/**
- * Defines values for RuntimeVersion.
- * Possible values include: 'Java_8', 'Java_11', 'NetCore_31'
- * @readonly
- * @enum {string}
- */
-export type RuntimeVersion = 'Java_8' | 'Java_11' | 'NetCore_31';
+/** Optional parameters. */
+export interface ServicesUpdateOptionalParams
+ 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;
+}
-/**
- * Defines values for DeploymentResourceProvisioningState.
- * Possible values include: 'Creating', 'Updating', 'Succeeded', 'Failed'
- * @readonly
- * @enum {string}
- */
-export type DeploymentResourceProvisioningState = 'Creating' | 'Updating' | 'Succeeded' | 'Failed';
+/** Contains response data for the update operation. */
+export type ServicesUpdateResponse = ServiceResource;
-/**
- * Defines values for DeploymentResourceStatus.
- * Possible values include: 'Unknown', 'Stopped', 'Running', 'Failed', 'Allocating', 'Upgrading',
- * 'Compiling'
- * @readonly
- * @enum {string}
- */
-export type DeploymentResourceStatus = 'Unknown' | 'Stopped' | 'Running' | 'Failed' | 'Allocating' | 'Upgrading' | 'Compiling';
+/** Optional parameters. */
+export interface ServicesListTestKeysOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Defines values for SkuScaleType.
- * Possible values include: 'None', 'Manual', 'Automatic'
- * @readonly
- * @enum {string}
- */
-export type SkuScaleType = 'None' | 'Manual' | 'Automatic';
+/** Contains response data for the listTestKeys operation. */
+export type ServicesListTestKeysResponse = TestKeys;
-/**
- * Defines values for ResourceSkuRestrictionsType.
- * Possible values include: 'Location', 'Zone'
- * @readonly
- * @enum {string}
- */
-export type ResourceSkuRestrictionsType = 'Location' | 'Zone';
+/** Optional parameters. */
+export interface ServicesRegenerateTestKeyOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Defines values for ResourceSkuRestrictionsReasonCode.
- * Possible values include: 'QuotaId', 'NotAvailableForSubscription'
- * @readonly
- * @enum {string}
- */
-export type ResourceSkuRestrictionsReasonCode = 'QuotaId' | 'NotAvailableForSubscription';
+/** Contains response data for the regenerateTestKey operation. */
+export type ServicesRegenerateTestKeyResponse = TestKeys;
-/**
- * Defines values for SupportedRuntimeValue.
- * Possible values include: 'Java_8', 'Java_11', 'NetCore_31'
- * @readonly
- * @enum {string}
- */
-export type SupportedRuntimeValue = 'Java_8' | 'Java_11' | 'NetCore_31';
+/** Optional parameters. */
+export interface ServicesDisableTestEndpointOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Defines values for SupportedRuntimePlatform.
- * Possible values include: 'Java', '.NET Core'
- * @readonly
- * @enum {string}
- */
-export type SupportedRuntimePlatform = 'Java' | '.NET Core';
+/** Optional parameters. */
+export interface ServicesEnableTestEndpointOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the get operation.
- */
-export type ServicesGetResponse = ServiceResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResource;
- };
-};
+/** Contains response data for the enableTestEndpoint operation. */
+export type ServicesEnableTestEndpointResponse = TestKeys;
-/**
- * Contains response data for the createOrUpdate operation.
- */
-export type ServicesCreateOrUpdateResponse = ServiceResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResource;
- };
-};
+/** Optional parameters. */
+export interface ServicesStopOptionalParams
+ 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 update operation.
- */
-export type ServicesUpdateResponse = ServiceResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResource;
- };
-};
+/** Optional parameters. */
+export interface ServicesStartOptionalParams
+ 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 listTestKeys operation.
- */
-export type ServicesListTestKeysResponse = TestKeys & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: TestKeys;
- };
-};
+/** Optional parameters. */
+export interface ServicesCheckNameAvailabilityOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the regenerateTestKey operation.
- */
-export type ServicesRegenerateTestKeyResponse = TestKeys & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: TestKeys;
- };
-};
+/** Contains response data for the checkNameAvailability operation. */
+export type ServicesCheckNameAvailabilityResponse = NameAvailability;
-/**
- * Contains response data for the enableTestEndpoint operation.
- */
-export type ServicesEnableTestEndpointResponse = TestKeys & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: TestKeys;
- };
-};
+/** Optional parameters. */
+export interface ServicesListBySubscriptionOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the checkNameAvailability operation.
- */
-export type ServicesCheckNameAvailabilityResponse = NameAvailability & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: NameAvailability;
- };
-};
+/** Contains response data for the listBySubscription operation. */
+export type ServicesListBySubscriptionResponse = ServiceResourceList;
-/**
- * Contains response data for the listBySubscription operation.
- */
-export type ServicesListBySubscriptionResponse = ServiceResourceList & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResourceList;
- };
-};
+/** Optional parameters. */
+export interface ServicesListOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the list operation.
- */
-export type ServicesListResponse = ServiceResourceList & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResourceList;
- };
-};
+/** Contains response data for the list operation. */
+export type ServicesListResponse = ServiceResourceList;
-/**
- * Contains response data for the beginCreateOrUpdate operation.
- */
-export type ServicesBeginCreateOrUpdateResponse = ServiceResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResource;
- };
-};
+/** Optional parameters. */
+export interface ServicesListBySubscriptionNextOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the beginUpdate operation.
- */
-export type ServicesBeginUpdateResponse = ServiceResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResource;
- };
-};
+/** Contains response data for the listBySubscriptionNext operation. */
+export type ServicesListBySubscriptionNextResponse = ServiceResourceList;
-/**
- * Contains response data for the listBySubscriptionNext operation.
- */
-export type ServicesListBySubscriptionNextResponse = ServiceResourceList & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResourceList;
- };
-};
+/** Optional parameters. */
+export interface ServicesListNextOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the listNext operation.
- */
-export type ServicesListNextResponse = ServiceResourceList & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ServiceResourceList;
- };
-};
+/** Contains response data for the listNext operation. */
+export type ServicesListNextResponse = ServiceResourceList;
-/**
- * Contains response data for the get operation.
- */
-export type ConfigServersGetResponse = ConfigServerResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerResource;
- };
-};
+/** Optional parameters. */
+export interface ConfigServersGetOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the updatePut operation.
- */
-export type ConfigServersUpdatePutResponse = ConfigServerResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerResource;
- };
-};
+/** Contains response data for the get operation. */
+export type ConfigServersGetResponse = ConfigServerResource;
-/**
- * Contains response data for the updatePatch operation.
- */
-export type ConfigServersUpdatePatchResponse = ConfigServerResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerResource;
- };
-};
+/** Optional parameters. */
+export interface ConfigServersUpdatePutOptionalParams
+ 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 validate operation.
- */
-export type ConfigServersValidateResponse = ConfigServerSettingsValidateResult & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerSettingsValidateResult;
- };
-};
+/** Contains response data for the updatePut operation. */
+export type ConfigServersUpdatePutResponse = ConfigServerResource;
-/**
- * Contains response data for the beginUpdatePut operation.
- */
-export type ConfigServersBeginUpdatePutResponse = ConfigServerResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerResource;
- };
-};
+/** Optional parameters. */
+export interface ConfigServersUpdatePatchOptionalParams
+ 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 beginUpdatePatch operation.
- */
-export type ConfigServersBeginUpdatePatchResponse = ConfigServerResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerResource;
- };
-};
+/** Contains response data for the updatePatch operation. */
+export type ConfigServersUpdatePatchResponse = ConfigServerResource;
-/**
- * Contains response data for the beginValidate operation.
- */
-export type ConfigServersBeginValidateResponse = ConfigServerSettingsValidateResult & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ConfigServerSettingsValidateResult;
- };
-};
+/** Optional parameters. */
+export interface ConfigServersValidateOptionalParams
+ 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 get operation.
- */
-export type MonitoringSettingsGetResponse = MonitoringSettingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: MonitoringSettingResource;
- };
-};
+/** Contains response data for the validate operation. */
+export type ConfigServersValidateResponse = ConfigServerSettingsValidateResult;
-/**
- * Contains response data for the updatePut operation.
- */
-export type MonitoringSettingsUpdatePutResponse = MonitoringSettingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: MonitoringSettingResource;
- };
-};
+/** Optional parameters. */
+export interface MonitoringSettingsGetOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the updatePatch operation.
- */
-export type MonitoringSettingsUpdatePatchResponse = MonitoringSettingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: MonitoringSettingResource;
- };
-};
+/** Contains response data for the get operation. */
+export type MonitoringSettingsGetResponse = MonitoringSettingResource;
-/**
- * Contains response data for the beginUpdatePut operation.
- */
-export type MonitoringSettingsBeginUpdatePutResponse = MonitoringSettingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: MonitoringSettingResource;
- };
-};
+/** Optional parameters. */
+export interface MonitoringSettingsUpdatePutOptionalParams
+ 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 beginUpdatePatch operation.
- */
-export type MonitoringSettingsBeginUpdatePatchResponse = MonitoringSettingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: MonitoringSettingResource;
- };
-};
+/** Contains response data for the updatePut operation. */
+export type MonitoringSettingsUpdatePutResponse = MonitoringSettingResource;
-/**
- * Contains response data for the get operation.
- */
-export type AppsGetResponse = AppResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResource;
- };
-};
+/** Optional parameters. */
+export interface MonitoringSettingsUpdatePatchOptionalParams
+ 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 createOrUpdate operation.
- */
-export type AppsCreateOrUpdateResponse = AppResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResource;
- };
-};
+/** Contains response data for the updatePatch operation. */
+export type MonitoringSettingsUpdatePatchResponse = MonitoringSettingResource;
-/**
- * Contains response data for the update operation.
- */
-export type AppsUpdateResponse = AppResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResource;
- };
-};
+/** Optional parameters. */
+export interface AppsGetOptionalParams extends coreClient.OperationOptions {
+ /** Indicates whether sync status */
+ syncStatus?: string;
+}
-/**
- * Contains response data for the list operation.
- */
-export type AppsListResponse = AppResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResourceCollection;
- };
-};
+/** Contains response data for the get operation. */
+export type AppsGetResponse = AppResource;
-/**
- * Contains response data for the getResourceUploadUrl operation.
- */
-export type AppsGetResourceUploadUrlResponse = ResourceUploadDefinition & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ResourceUploadDefinition;
- };
-};
+/** Optional parameters. */
+export interface AppsCreateOrUpdateOptionalParams
+ 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 validateDomain operation.
- */
-export type AppsValidateDomainResponse = CustomDomainValidateResult & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainValidateResult;
- };
-};
+/** Contains response data for the createOrUpdate operation. */
+export type AppsCreateOrUpdateResponse = AppResource;
-/**
- * Contains response data for the beginCreateOrUpdate operation.
- */
-export type AppsBeginCreateOrUpdateResponse = AppResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResource;
- };
-};
+/** Optional parameters. */
+export interface AppsDeleteOptionalParams 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 beginUpdate operation.
- */
-export type AppsBeginUpdateResponse = AppResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResource;
- };
-};
+/** Optional parameters. */
+export interface AppsUpdateOptionalParams 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 listNext operation.
- */
-export type AppsListNextResponse = AppResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AppResourceCollection;
- };
-};
+/** Contains response data for the update operation. */
+export type AppsUpdateResponse = AppResource;
-/**
- * Contains response data for the get operation.
- */
-export type BindingsGetResponse = BindingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResource;
- };
-};
+/** Optional parameters. */
+export interface AppsListOptionalParams extends coreClient.OperationOptions {}
-/**
- * Contains response data for the createOrUpdate operation.
- */
-export type BindingsCreateOrUpdateResponse = BindingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResource;
- };
-};
+/** Contains response data for the list operation. */
+export type AppsListResponse = AppResourceCollection;
-/**
- * Contains response data for the update operation.
- */
-export type BindingsUpdateResponse = BindingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResource;
- };
-};
+/** Optional parameters. */
+export interface AppsGetResourceUploadUrlOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the list operation.
- */
-export type BindingsListResponse = BindingResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResourceCollection;
- };
-};
+/** Contains response data for the getResourceUploadUrl operation. */
+export type AppsGetResourceUploadUrlResponse = ResourceUploadDefinition;
-/**
- * Contains response data for the beginCreateOrUpdate operation.
- */
-export type BindingsBeginCreateOrUpdateResponse = BindingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResource;
- };
-};
+/** Optional parameters. */
+export interface AppsValidateDomainOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the beginUpdate operation.
- */
-export type BindingsBeginUpdateResponse = BindingResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResource;
- };
-};
+/** Contains response data for the validateDomain operation. */
+export type AppsValidateDomainResponse = CustomDomainValidateResult;
-/**
- * Contains response data for the listNext operation.
- */
-export type BindingsListNextResponse = BindingResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: BindingResourceCollection;
- };
-};
+/** Optional parameters. */
+export interface AppsListNextOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the get operation.
- */
-export type CertificatesGetResponse = CertificateResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CertificateResource;
- };
-};
+/** Contains response data for the listNext operation. */
+export type AppsListNextResponse = AppResourceCollection;
-/**
- * Contains response data for the createOrUpdate operation.
- */
-export type CertificatesCreateOrUpdateResponse = CertificateResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CertificateResource;
- };
-};
+/** Optional parameters. */
+export interface BindingsGetOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the list operation.
- */
-export type CertificatesListResponse = CertificateResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CertificateResourceCollection;
- };
-};
+/** Contains response data for the get operation. */
+export type BindingsGetResponse = BindingResource;
-/**
- * Contains response data for the beginCreateOrUpdate operation.
- */
-export type CertificatesBeginCreateOrUpdateResponse = CertificateResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CertificateResource;
- };
-};
+/** Optional parameters. */
+export interface BindingsCreateOrUpdateOptionalParams
+ 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 listNext operation.
- */
-export type CertificatesListNextResponse = CertificateResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CertificateResourceCollection;
- };
-};
+/** Contains response data for the createOrUpdate operation. */
+export type BindingsCreateOrUpdateResponse = BindingResource;
-/**
- * Contains response data for the get operation.
- */
-export type CustomDomainsGetResponse = CustomDomainResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResource;
- };
-};
+/** Optional parameters. */
+export interface BindingsDeleteOptionalParams
+ 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 createOrUpdate operation.
- */
-export type CustomDomainsCreateOrUpdateResponse = CustomDomainResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResource;
- };
-};
+/** Optional parameters. */
+export interface BindingsUpdateOptionalParams
+ 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 update operation.
- */
-export type CustomDomainsUpdateResponse = CustomDomainResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResource;
- };
-};
+/** Contains response data for the update operation. */
+export type BindingsUpdateResponse = BindingResource;
-/**
- * Contains response data for the list operation.
- */
-export type CustomDomainsListResponse = CustomDomainResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResourceCollection;
- };
-};
+/** Optional parameters. */
+export interface BindingsListOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the beginCreateOrUpdate operation.
- */
-export type CustomDomainsBeginCreateOrUpdateResponse = CustomDomainResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResource;
- };
-};
+/** Contains response data for the list operation. */
+export type BindingsListResponse = BindingResourceCollection;
-/**
- * Contains response data for the beginUpdate operation.
- */
-export type CustomDomainsBeginUpdateResponse = CustomDomainResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResource;
- };
-};
+/** Optional parameters. */
+export interface BindingsListNextOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the listNext operation.
- */
-export type CustomDomainsListNextResponse = CustomDomainResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: CustomDomainResourceCollection;
- };
-};
+/** Contains response data for the listNext operation. */
+export type BindingsListNextResponse = BindingResourceCollection;
-/**
- * Contains response data for the get operation.
- */
-export type DeploymentsGetResponse = DeploymentResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResource;
- };
-};
+/** Optional parameters. */
+export interface StoragesGetOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the createOrUpdate operation.
- */
-export type DeploymentsCreateOrUpdateResponse = DeploymentResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResource;
- };
-};
+/** Contains response data for the get operation. */
+export type StoragesGetResponse = StorageResource;
-/**
- * Contains response data for the update operation.
- */
-export type DeploymentsUpdateResponse = DeploymentResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResource;
- };
-};
+/** Optional parameters. */
+export interface StoragesCreateOrUpdateOptionalParams
+ 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 list operation.
- */
-export type DeploymentsListResponse = DeploymentResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResourceCollection;
- };
-};
+/** Contains response data for the createOrUpdate operation. */
+export type StoragesCreateOrUpdateResponse = StorageResource;
-/**
- * Contains response data for the listForCluster operation.
- */
-export type DeploymentsListForClusterResponse = DeploymentResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResourceCollection;
- };
-};
+/** Optional parameters. */
+export interface StoragesDeleteOptionalParams
+ 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 getLogFileUrl operation.
- */
-export type DeploymentsGetLogFileUrlResponse = LogFileUrlResponse & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: LogFileUrlResponse;
- };
-};
+/** Optional parameters. */
+export interface StoragesListOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the beginCreateOrUpdate operation.
- */
-export type DeploymentsBeginCreateOrUpdateResponse = DeploymentResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResource;
- };
-};
+/** Contains response data for the list operation. */
+export type StoragesListResponse = StorageResourceCollection;
-/**
- * Contains response data for the beginUpdate operation.
- */
-export type DeploymentsBeginUpdateResponse = DeploymentResource & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResource;
- };
-};
+/** Optional parameters. */
+export interface StoragesListNextOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the listNext operation.
- */
-export type DeploymentsListNextResponse = DeploymentResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResourceCollection;
- };
-};
+/** Contains response data for the listNext operation. */
+export type StoragesListNextResponse = StorageResourceCollection;
-/**
- * Contains response data for the listForClusterNext operation.
- */
-export type DeploymentsListForClusterNextResponse = DeploymentResourceCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: DeploymentResourceCollection;
- };
-};
+/** Optional parameters. */
+export interface CertificatesGetOptionalParams
+ extends coreClient.OperationOptions {}
-/**
- * Contains response data for the list operation.
- */
-export type OperationsListResponse = AvailableOperations & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AvailableOperations;
- };
-};
+/** Contains response data for the get operation. */
+export type CertificatesGetResponse = CertificateResource;
-/**
- * Contains response data for the listNext operation.
- */
-export type OperationsListNextResponse = AvailableOperations & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AvailableOperations;
- };
-};
+/** Optional parameters. */
+export interface CertificatesCreateOrUpdateOptionalParams
+ 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 listRuntimeVersions operation.
- */
-export type RuntimeVersionsListRuntimeVersionsResponse = AvailableRuntimeVersions & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: AvailableRuntimeVersions;
- };
-};
+/** Contains response data for the createOrUpdate operation. */
+export type CertificatesCreateOrUpdateResponse = CertificateResource;
-/**
- * Contains response data for the list operation.
- */
-export type SkusListResponse = ResourceSkuCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ResourceSkuCollection;
- };
-};
+/** Optional parameters. */
+export interface CertificatesDeleteOptionalParams
+ 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 listNext operation.
- */
-export type SkusListNextResponse = ResourceSkuCollection & {
- /**
- * The underlying HTTP response.
- */
- _response: msRest.HttpResponse & {
- /**
- * The response body as text (string format)
- */
- bodyAsText: string;
-
- /**
- * The response body as parsed JSON or XML
- */
- parsedBody: ResourceSkuCollection;
- };
-};
+/** Optional parameters. */
+export interface CertificatesListOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the list operation. */
+export type CertificatesListResponse = CertificateResourceCollection;
+
+/** Optional parameters. */
+export interface CertificatesListNextOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the listNext operation. */
+export type CertificatesListNextResponse = CertificateResourceCollection;
+
+/** Optional parameters. */
+export interface CustomDomainsGetOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the get operation. */
+export type CustomDomainsGetResponse = CustomDomainResource;
+
+/** Optional parameters. */
+export interface CustomDomainsCreateOrUpdateOptionalParams
+ 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 createOrUpdate operation. */
+export type CustomDomainsCreateOrUpdateResponse = CustomDomainResource;
+
+/** Optional parameters. */
+export interface CustomDomainsDeleteOptionalParams
+ 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 CustomDomainsUpdateOptionalParams
+ 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 update operation. */
+export type CustomDomainsUpdateResponse = CustomDomainResource;
+
+/** Optional parameters. */
+export interface CustomDomainsListOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the list operation. */
+export type CustomDomainsListResponse = CustomDomainResourceCollection;
+
+/** Optional parameters. */
+export interface CustomDomainsListNextOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the listNext operation. */
+export type CustomDomainsListNextResponse = CustomDomainResourceCollection;
+
+/** Optional parameters. */
+export interface DeploymentsGetOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the get operation. */
+export type DeploymentsGetResponse = DeploymentResource;
+
+/** Optional parameters. */
+export interface DeploymentsCreateOrUpdateOptionalParams
+ 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 createOrUpdate operation. */
+export type DeploymentsCreateOrUpdateResponse = DeploymentResource;
+
+/** Optional parameters. */
+export interface DeploymentsDeleteOptionalParams
+ 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 DeploymentsUpdateOptionalParams
+ 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 update operation. */
+export type DeploymentsUpdateResponse = DeploymentResource;
+
+/** Optional parameters. */
+export interface DeploymentsListOptionalParams
+ extends coreClient.OperationOptions {
+ /** Version of the deployments to be listed */
+ version?: string[];
+}
+
+/** Contains response data for the list operation. */
+export type DeploymentsListResponse = DeploymentResourceCollection;
+
+/** Optional parameters. */
+export interface DeploymentsListForClusterOptionalParams
+ extends coreClient.OperationOptions {
+ /** Version of the deployments to be listed */
+ version?: string[];
+}
+
+/** Contains response data for the listForCluster operation. */
+export type DeploymentsListForClusterResponse = DeploymentResourceCollection;
+
+/** Optional parameters. */
+export interface DeploymentsStartOptionalParams
+ 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 DeploymentsStopOptionalParams
+ 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 DeploymentsRestartOptionalParams
+ 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 DeploymentsGetLogFileUrlOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the getLogFileUrl operation. */
+export type DeploymentsGetLogFileUrlResponse = LogFileUrlResponse;
+
+/** Optional parameters. */
+export interface DeploymentsGenerateHeapDumpOptionalParams
+ 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 DeploymentsGenerateThreadDumpOptionalParams
+ 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 DeploymentsStartJFROptionalParams
+ 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 DeploymentsListNextOptionalParams
+ extends coreClient.OperationOptions {
+ /** Version of the deployments to be listed */
+ version?: string[];
+}
+
+/** Contains response data for the listNext operation. */
+export type DeploymentsListNextResponse = DeploymentResourceCollection;
+
+/** Optional parameters. */
+export interface DeploymentsListForClusterNextOptionalParams
+ extends coreClient.OperationOptions {
+ /** Version of the deployments to be listed */
+ version?: string[];
+}
+
+/** Contains response data for the listForClusterNext operation. */
+export type DeploymentsListForClusterNextResponse = DeploymentResourceCollection;
+
+/** Optional parameters. */
+export interface OperationsListOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the list operation. */
+export type OperationsListResponse = AvailableOperations;
+
+/** Optional parameters. */
+export interface OperationsListNextOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the listNext operation. */
+export type OperationsListNextResponse = AvailableOperations;
+
+/** Optional parameters. */
+export interface RuntimeVersionsListRuntimeVersionsOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the listRuntimeVersions operation. */
+export type RuntimeVersionsListRuntimeVersionsResponse = AvailableRuntimeVersions;
+
+/** Optional parameters. */
+export interface SkusListOptionalParams extends coreClient.OperationOptions {}
+
+/** Contains response data for the list operation. */
+export type SkusListResponse = ResourceSkuCollection;
+
+/** Optional parameters. */
+export interface SkusListNextOptionalParams
+ extends coreClient.OperationOptions {}
+
+/** Contains response data for the listNext operation. */
+export type SkusListNextResponse = ResourceSkuCollection;
+
+/** Optional parameters. */
+export interface AppPlatformManagementClientOptionalParams
+ extends coreClient.ServiceClientOptions {
+ /** server parameter */
+ $host?: string;
+ /** Api Version */
+ apiVersion?: string;
+ /** Overrides client endpoint. */
+ endpoint?: string;
+}
diff --git a/sdk/appplatform/arm-appplatform/src/models/mappers.ts b/sdk/appplatform/arm-appplatform/src/models/mappers.ts
index d5aea74885fa..044b68decca5 100644
--- a/sdk/appplatform/arm-appplatform/src/models/mappers.ts
+++ b/sdk/appplatform/arm-appplatform/src/models/mappers.ts
@@ -6,81 +6,74 @@
* 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 NetworkProfileOutboundIPs: msRest.CompositeMapper = {
- serializedName: "NetworkProfile_outboundIPs",
+export const Resource: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "NetworkProfileOutboundIPs",
+ className: "Resource",
modelProperties: {
- publicIPs: {
+ id: {
+ serializedName: "id",
readOnly: true,
- serializedName: "publicIPs",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "String"
- }
- }
+ name: "String"
+ }
+ },
+ name: {
+ serializedName: "name",
+ readOnly: true,
+ type: {
+ name: "String"
+ }
+ },
+ type: {
+ serializedName: "type",
+ readOnly: true,
+ type: {
+ name: "String"
}
}
}
}
};
-export const RequiredTraffic: msRest.CompositeMapper = {
- serializedName: "RequiredTraffic",
+export const ClusterResourceProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "RequiredTraffic",
+ className: "ClusterResourceProperties",
modelProperties: {
- protocol: {
+ provisioningState: {
+ serializedName: "provisioningState",
readOnly: true,
- serializedName: "protocol",
type: {
name: "String"
}
},
- port: {
- readOnly: true,
- serializedName: "port",
+ networkProfile: {
+ serializedName: "networkProfile",
type: {
- name: "Number"
+ name: "Composite",
+ className: "NetworkProfile"
}
},
- ips: {
+ version: {
+ serializedName: "version",
readOnly: true,
- serializedName: "ips",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "String"
- }
- }
+ name: "Number"
}
},
- fqdns: {
+ serviceId: {
+ serializedName: "serviceId",
readOnly: true,
- serializedName: "fqdns",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "String"
- }
- }
+ name: "String"
}
},
- direction: {
+ powerState: {
+ serializedName: "powerState",
readOnly: true,
- serializedName: "direction",
type: {
name: "String"
}
@@ -89,8 +82,7 @@ export const RequiredTraffic: msRest.CompositeMapper = {
}
};
-export const NetworkProfile: msRest.CompositeMapper = {
- serializedName: "NetworkProfile",
+export const NetworkProfile: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "NetworkProfile",
@@ -126,7 +118,6 @@ export const NetworkProfile: msRest.CompositeMapper = {
}
},
outboundIPs: {
- readOnly: true,
serializedName: "outboundIPs",
type: {
name: "Composite",
@@ -134,8 +125,8 @@ export const NetworkProfile: msRest.CompositeMapper = {
}
},
requiredTraffics: {
- readOnly: true,
serializedName: "requiredTraffics",
+ readOnly: true,
type: {
name: "Sequence",
element: {
@@ -150,36 +141,73 @@ export const NetworkProfile: msRest.CompositeMapper = {
}
};
-export const ClusterResourceProperties: msRest.CompositeMapper = {
- serializedName: "ClusterResourceProperties",
+export const NetworkProfileOutboundIPs: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ClusterResourceProperties",
+ className: "NetworkProfileOutboundIPs",
modelProperties: {
- provisioningState: {
+ publicIPs: {
+ serializedName: "publicIPs",
+ readOnly: true,
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+ }
+ }
+};
+
+export const RequiredTraffic: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "RequiredTraffic",
+ modelProperties: {
+ protocol: {
+ serializedName: "protocol",
readOnly: true,
- serializedName: "provisioningState",
type: {
name: "String"
}
},
- networkProfile: {
- serializedName: "networkProfile",
+ port: {
+ serializedName: "port",
+ readOnly: true,
type: {
- name: "Composite",
- className: "NetworkProfile"
+ name: "Number"
}
},
- version: {
+ ips: {
+ serializedName: "ips",
readOnly: true,
- serializedName: "version",
type: {
- name: "Number"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
}
},
- serviceId: {
+ fqdns: {
+ serializedName: "fqdns",
+ readOnly: true,
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
+ }
+ },
+ direction: {
+ serializedName: "direction",
readOnly: true,
- serializedName: "serviceId",
type: {
name: "String"
}
@@ -188,19 +216,20 @@ export const ClusterResourceProperties: msRest.CompositeMapper = {
}
};
-export const Sku: msRest.CompositeMapper = {
- serializedName: "Sku",
+export const Sku: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "Sku",
modelProperties: {
name: {
+ defaultValue: "S0",
serializedName: "name",
type: {
name: "String"
}
},
tier: {
+ defaultValue: "Standard",
serializedName: "tier",
type: {
name: "String"
@@ -216,228 +245,203 @@ export const Sku: msRest.CompositeMapper = {
}
};
-export const Resource: msRest.CompositeMapper = {
- serializedName: "Resource",
+export const CloudError: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "Resource",
+ className: "CloudError",
modelProperties: {
- id: {
- readOnly: true,
- serializedName: "id",
+ error: {
+ serializedName: "error",
+ type: {
+ name: "Composite",
+ className: "CloudErrorBody"
+ }
+ }
+ }
+ }
+};
+
+export const CloudErrorBody: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "CloudErrorBody",
+ modelProperties: {
+ code: {
+ serializedName: "code",
type: {
name: "String"
}
},
- name: {
- readOnly: true,
- serializedName: "name",
+ message: {
+ serializedName: "message",
type: {
name: "String"
}
},
- type: {
- readOnly: true,
- serializedName: "type",
+ target: {
+ serializedName: "target",
type: {
name: "String"
}
+ },
+ details: {
+ serializedName: "details",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "CloudErrorBody"
+ }
+ }
+ }
}
}
}
};
-export const TrackedResource: msRest.CompositeMapper = {
- serializedName: "TrackedResource",
+export const TestKeys: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "TrackedResource",
+ className: "TestKeys",
modelProperties: {
- ...Resource.type.modelProperties,
- location: {
- serializedName: "location",
+ primaryKey: {
+ serializedName: "primaryKey",
type: {
name: "String"
}
},
- tags: {
- serializedName: "tags",
+ secondaryKey: {
+ serializedName: "secondaryKey",
type: {
- name: "Dictionary",
- value: {
- type: {
- name: "String"
- }
- }
+ name: "String"
+ }
+ },
+ primaryTestEndpoint: {
+ serializedName: "primaryTestEndpoint",
+ type: {
+ name: "String"
+ }
+ },
+ secondaryTestEndpoint: {
+ serializedName: "secondaryTestEndpoint",
+ type: {
+ name: "String"
+ }
+ },
+ enabled: {
+ serializedName: "enabled",
+ type: {
+ name: "Boolean"
}
}
}
}
};
-export const ServiceResource: msRest.CompositeMapper = {
- serializedName: "ServiceResource",
+export const RegenerateTestKeyRequestPayload: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ServiceResource",
+ className: "RegenerateTestKeyRequestPayload",
modelProperties: {
- ...TrackedResource.type.modelProperties,
- properties: {
- serializedName: "properties",
- type: {
- name: "Composite",
- className: "ClusterResourceProperties"
- }
- },
- sku: {
- serializedName: "sku",
+ keyType: {
+ serializedName: "keyType",
+ required: true,
type: {
- name: "Composite",
- className: "Sku"
+ name: "String"
}
}
}
}
};
-export const ManagedIdentityProperties: msRest.CompositeMapper = {
- serializedName: "ManagedIdentityProperties",
+export const ConfigServerProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ManagedIdentityProperties",
+ className: "ConfigServerProperties",
modelProperties: {
- type: {
- serializedName: "type",
+ provisioningState: {
+ serializedName: "provisioningState",
+ readOnly: true,
type: {
name: "String"
}
},
- principalId: {
- serializedName: "principalId",
+ error: {
+ serializedName: "error",
type: {
- name: "String"
+ name: "Composite",
+ className: "ErrorModel"
}
},
- tenantId: {
- serializedName: "tenantId",
+ configServer: {
+ serializedName: "configServer",
type: {
- name: "String"
+ name: "Composite",
+ className: "ConfigServerSettings"
}
}
}
}
};
-export const ConfigServerSettingsErrorRecord: msRest.CompositeMapper = {
- serializedName: "ConfigServerSettingsErrorRecord",
+export const ErrorModel: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ConfigServerSettingsErrorRecord",
+ className: "ErrorModel",
modelProperties: {
- name: {
- serializedName: "name",
+ code: {
+ serializedName: "code",
type: {
name: "String"
}
},
- uri: {
- serializedName: "uri",
+ message: {
+ serializedName: "message",
type: {
name: "String"
}
- },
- messages: {
- serializedName: "messages",
- type: {
- name: "Sequence",
- element: {
- type: {
- name: "String"
- }
- }
- }
- }
- }
- }
-};
-
-export const ConfigServerSettingsValidateResult: msRest.CompositeMapper = {
- serializedName: "ConfigServerSettingsValidateResult",
- type: {
- name: "Composite",
- className: "ConfigServerSettingsValidateResult",
- modelProperties: {
- isValid: {
- serializedName: "isValid",
- type: {
- name: "Boolean"
- }
- },
- details: {
- serializedName: "details",
- type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "ConfigServerSettingsErrorRecord"
- }
- }
- }
}
}
}
};
-export const ErrorModel: msRest.CompositeMapper = {
- serializedName: "Error",
+export const ConfigServerSettings: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ErrorModel",
+ className: "ConfigServerSettings",
modelProperties: {
- code: {
- serializedName: "code",
- type: {
- name: "String"
- }
- },
- message: {
- serializedName: "message",
+ gitProperty: {
+ serializedName: "gitProperty",
type: {
- name: "String"
+ name: "Composite",
+ className: "ConfigServerGitProperty"
}
}
}
}
};
-export const GitPatternRepository: msRest.CompositeMapper = {
- serializedName: "GitPatternRepository",
+export const ConfigServerGitProperty: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "GitPatternRepository",
+ className: "ConfigServerGitProperty",
modelProperties: {
- name: {
- required: true,
- serializedName: "name",
- type: {
- name: "String"
- }
- },
- pattern: {
- serializedName: "pattern",
+ repositories: {
+ serializedName: "repositories",
type: {
name: "Sequence",
element: {
type: {
- name: "String"
+ name: "Composite",
+ className: "GitPatternRepository"
}
}
}
},
uri: {
- required: true,
serializedName: "uri",
+ required: true,
type: {
name: "String"
}
@@ -499,27 +503,32 @@ export const GitPatternRepository: msRest.CompositeMapper = {
}
};
-export const ConfigServerGitProperty: msRest.CompositeMapper = {
- serializedName: "ConfigServerGitProperty",
+export const GitPatternRepository: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ConfigServerGitProperty",
+ className: "GitPatternRepository",
modelProperties: {
- repositories: {
- serializedName: "repositories",
+ name: {
+ serializedName: "name",
+ required: true,
+ type: {
+ name: "String"
+ }
+ },
+ pattern: {
+ serializedName: "pattern",
type: {
name: "Sequence",
element: {
type: {
- name: "Composite",
- className: "GitPatternRepository"
+ name: "String"
}
}
}
},
uri: {
- required: true,
serializedName: "uri",
+ required: true,
type: {
name: "String"
}
@@ -581,109 +590,73 @@ export const ConfigServerGitProperty: msRest.CompositeMapper = {
}
};
-export const ConfigServerSettings: msRest.CompositeMapper = {
- serializedName: "ConfigServerSettings",
+export const ConfigServerSettingsValidateResult: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ConfigServerSettings",
+ className: "ConfigServerSettingsValidateResult",
modelProperties: {
- gitProperty: {
- serializedName: "gitProperty",
+ isValid: {
+ serializedName: "isValid",
type: {
- name: "Composite",
- className: "ConfigServerGitProperty"
+ name: "Boolean"
+ }
+ },
+ details: {
+ serializedName: "details",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "ConfigServerSettingsErrorRecord"
+ }
+ }
}
}
}
}
};
-export const ConfigServerProperties: msRest.CompositeMapper = {
- serializedName: "ConfigServerProperties",
+export const ConfigServerSettingsErrorRecord: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ConfigServerProperties",
+ className: "ConfigServerSettingsErrorRecord",
modelProperties: {
- provisioningState: {
- readOnly: true,
- serializedName: "provisioningState",
+ name: {
+ serializedName: "name",
type: {
name: "String"
}
},
- error: {
- serializedName: "error",
+ uri: {
+ serializedName: "uri",
type: {
- name: "Composite",
- className: "ErrorModel"
+ name: "String"
}
},
- configServer: {
- serializedName: "configServer",
- type: {
- name: "Composite",
- className: "ConfigServerSettings"
- }
- }
- }
- }
-};
-
-export const ProxyResource: msRest.CompositeMapper = {
- serializedName: "ProxyResource",
- type: {
- name: "Composite",
- className: "ProxyResource",
- modelProperties: {
- ...Resource.type.modelProperties
- }
- }
-};
-
-export const ConfigServerResource: msRest.CompositeMapper = {
- serializedName: "ConfigServerResource",
- type: {
- name: "Composite",
- className: "ConfigServerResource",
- modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
- type: {
- name: "Composite",
- className: "ConfigServerProperties"
- }
- }
- }
- }
-};
-
-export const ApplicationInsightsAgentVersions: msRest.CompositeMapper = {
- serializedName: "applicationInsightsAgentVersions",
- type: {
- name: "Composite",
- className: "ApplicationInsightsAgentVersions",
- modelProperties: {
- java: {
- readOnly: true,
- serializedName: "java",
+ messages: {
+ serializedName: "messages",
type: {
- name: "String"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
}
}
}
}
};
-export const MonitoringSettingProperties: msRest.CompositeMapper = {
- serializedName: "MonitoringSettingProperties",
+export const MonitoringSettingProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "MonitoringSettingProperties",
modelProperties: {
provisioningState: {
- readOnly: true,
serializedName: "provisioningState",
+ readOnly: true,
type: {
name: "String"
}
@@ -708,11 +681,11 @@ export const MonitoringSettingProperties: msRest.CompositeMapper = {
}
},
appInsightsSamplingRate: {
- serializedName: "appInsightsSamplingRate",
constraints: {
InclusiveMaximum: 100,
InclusiveMinimum: 0
},
+ serializedName: "appInsightsSamplingRate",
type: {
name: "Number"
}
@@ -728,98 +701,139 @@ export const MonitoringSettingProperties: msRest.CompositeMapper = {
}
};
-export const MonitoringSettingResource: msRest.CompositeMapper = {
- serializedName: "MonitoringSettingResource",
+export const ApplicationInsightsAgentVersions: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "MonitoringSettingResource",
+ className: "ApplicationInsightsAgentVersions",
modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
+ java: {
+ serializedName: "java",
+ readOnly: true,
type: {
- name: "Composite",
- className: "MonitoringSettingProperties"
+ name: "String"
}
}
}
}
};
-export const TestKeys: msRest.CompositeMapper = {
- serializedName: "TestKeys",
+export const AppResourceProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "TestKeys",
+ className: "AppResourceProperties",
modelProperties: {
- primaryKey: {
- serializedName: "primaryKey",
+ public: {
+ serializedName: "public",
+ type: {
+ name: "Boolean"
+ }
+ },
+ url: {
+ serializedName: "url",
+ readOnly: true,
type: {
name: "String"
}
},
- secondaryKey: {
- serializedName: "secondaryKey",
+ provisioningState: {
+ serializedName: "provisioningState",
+ readOnly: true,
type: {
name: "String"
}
},
- primaryTestEndpoint: {
- serializedName: "primaryTestEndpoint",
+ activeDeploymentName: {
+ serializedName: "activeDeploymentName",
type: {
name: "String"
}
},
- secondaryTestEndpoint: {
- serializedName: "secondaryTestEndpoint",
+ fqdn: {
+ serializedName: "fqdn",
type: {
name: "String"
}
},
- enabled: {
- serializedName: "enabled",
+ httpsOnly: {
+ defaultValue: false,
+ serializedName: "httpsOnly",
type: {
name: "Boolean"
}
- }
- }
- }
-};
-
-export const RegenerateTestKeyRequestPayload: msRest.CompositeMapper = {
- serializedName: "RegenerateTestKeyRequestPayload",
- type: {
- name: "Composite",
- className: "RegenerateTestKeyRequestPayload",
- modelProperties: {
- keyType: {
- required: true,
- serializedName: "keyType",
+ },
+ createdTime: {
+ serializedName: "createdTime",
+ readOnly: true,
type: {
- name: "String"
+ name: "DateTime"
}
- }
- }
- }
-};
-
-export const TemporaryDisk: msRest.CompositeMapper = {
- serializedName: "TemporaryDisk",
- type: {
- name: "Composite",
- className: "TemporaryDisk",
- modelProperties: {
- sizeInGB: {
- serializedName: "sizeInGB",
- constraints: {
- InclusiveMaximum: 5,
- InclusiveMinimum: 0
- },
+ },
+ temporaryDisk: {
+ serializedName: "temporaryDisk",
type: {
- name: "Number"
+ name: "Composite",
+ className: "TemporaryDisk"
}
},
- mountPath: {
+ persistentDisk: {
+ serializedName: "persistentDisk",
+ type: {
+ name: "Composite",
+ className: "PersistentDisk"
+ }
+ },
+ customPersistentDisks: {
+ serializedName: "customPersistentDisks",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "CustomPersistentDiskResource"
+ }
+ }
+ }
+ },
+ enableEndToEndTLS: {
+ defaultValue: false,
+ serializedName: "enableEndToEndTLS",
+ type: {
+ name: "Boolean"
+ }
+ },
+ loadedCertificates: {
+ serializedName: "loadedCertificates",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "LoadedCertificate"
+ }
+ }
+ }
+ }
+ }
+ }
+};
+
+export const TemporaryDisk: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "TemporaryDisk",
+ modelProperties: {
+ sizeInGB: {
+ constraints: {
+ InclusiveMaximum: 5,
+ InclusiveMinimum: 0
+ },
+ serializedName: "sizeInGB",
+ type: {
+ name: "Number"
+ }
+ },
+ mountPath: {
+ defaultValue: "/tmp",
serializedName: "mountPath",
type: {
name: "String"
@@ -829,29 +843,28 @@ export const TemporaryDisk: msRest.CompositeMapper = {
}
};
-export const PersistentDisk: msRest.CompositeMapper = {
- serializedName: "PersistentDisk",
+export const PersistentDisk: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "PersistentDisk",
modelProperties: {
sizeInGB: {
- serializedName: "sizeInGB",
constraints: {
InclusiveMaximum: 50,
InclusiveMinimum: 0
},
+ serializedName: "sizeInGB",
type: {
name: "Number"
}
},
usedInGB: {
- readOnly: true,
- serializedName: "usedInGB",
constraints: {
InclusiveMaximum: 50,
InclusiveMinimum: 0
},
+ serializedName: "usedInGB",
+ readOnly: true,
type: {
name: "Number"
}
@@ -866,104 +879,144 @@ export const PersistentDisk: msRest.CompositeMapper = {
}
};
-export const AppResourceProperties: msRest.CompositeMapper = {
- serializedName: "AppResourceProperties",
+export const CustomPersistentDiskResource: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "AppResourceProperties",
+ className: "CustomPersistentDiskResource",
modelProperties: {
- publicProperty: {
- serializedName: "public",
+ customPersistentDiskProperties: {
+ serializedName: "customPersistentDiskProperties",
type: {
- name: "Boolean"
+ name: "Composite",
+ className: "CustomPersistentDiskProperties"
}
},
- url: {
- readOnly: true,
- serializedName: "url",
+ storageId: {
+ serializedName: "storageId",
+ required: true,
type: {
name: "String"
}
- },
- provisioningState: {
- readOnly: true,
- serializedName: "provisioningState",
+ }
+ }
+ }
+};
+
+export const CustomPersistentDiskProperties: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "CustomPersistentDiskProperties",
+ uberParent: "CustomPersistentDiskProperties",
+ polymorphicDiscriminator: {
+ serializedName: "type",
+ clientName: "type"
+ },
+ modelProperties: {
+ type: {
+ defaultValue: "AzureFileVolume",
+ isConstant: true,
+ serializedName: "type",
type: {
name: "String"
}
},
- activeDeploymentName: {
- serializedName: "activeDeploymentName",
+ mountPath: {
+ serializedName: "mountPath",
+ required: true,
type: {
name: "String"
}
},
- fqdn: {
- serializedName: "fqdn",
+ readonly: {
+ serializedName: "readonly",
type: {
- name: "String"
+ name: "Boolean"
}
},
- httpsOnly: {
- serializedName: "httpsOnly",
+ mountOptions: {
+ serializedName: "mountOptions",
type: {
- name: "Boolean"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+ }
+ }
+};
+
+export const LoadedCertificate: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "LoadedCertificate",
+ modelProperties: {
+ resourceId: {
+ serializedName: "resourceId",
+ required: true,
+ type: {
+ name: "String"
}
},
- enableEndToEndTLS: {
- serializedName: "enableEndToEndTLS",
+ loadTrustStore: {
+ defaultValue: false,
+ serializedName: "loadTrustStore",
type: {
name: "Boolean"
}
- },
- createdTime: {
- readOnly: true,
- serializedName: "createdTime",
+ }
+ }
+ }
+};
+
+export const ManagedIdentityProperties: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "ManagedIdentityProperties",
+ modelProperties: {
+ type: {
+ serializedName: "type",
type: {
- name: "DateTime"
+ name: "String"
}
},
- temporaryDisk: {
- serializedName: "temporaryDisk",
+ principalId: {
+ serializedName: "principalId",
type: {
- name: "Composite",
- className: "TemporaryDisk"
+ name: "String"
}
},
- persistentDisk: {
- serializedName: "persistentDisk",
+ tenantId: {
+ serializedName: "tenantId",
type: {
- name: "Composite",
- className: "PersistentDisk"
+ name: "String"
}
}
}
}
};
-export const AppResource: msRest.CompositeMapper = {
- serializedName: "AppResource",
+export const AppResourceCollection: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "AppResource",
+ className: "AppResourceCollection",
modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
- type: {
- name: "Composite",
- className: "AppResourceProperties"
- }
- },
- identity: {
- serializedName: "identity",
+ value: {
+ serializedName: "value",
type: {
- name: "Composite",
- className: "ManagedIdentityProperties"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "AppResource"
+ }
+ }
}
},
- location: {
- serializedName: "location",
+ nextLink: {
+ serializedName: "nextLink",
type: {
name: "String"
}
@@ -972,8 +1025,7 @@ export const AppResource: msRest.CompositeMapper = {
}
};
-export const ResourceUploadDefinition: msRest.CompositeMapper = {
- serializedName: "ResourceUploadDefinition",
+export const ResourceUploadDefinition: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "ResourceUploadDefinition",
@@ -994,22 +1046,21 @@ export const ResourceUploadDefinition: msRest.CompositeMapper = {
}
};
-export const BindingResourceProperties: msRest.CompositeMapper = {
- serializedName: "BindingResourceProperties",
+export const BindingResourceProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "BindingResourceProperties",
modelProperties: {
resourceName: {
- readOnly: true,
serializedName: "resourceName",
+ readOnly: true,
type: {
name: "String"
}
},
resourceType: {
- readOnly: true,
serializedName: "resourceType",
+ readOnly: true,
type: {
name: "String"
}
@@ -1031,29 +1082,27 @@ export const BindingResourceProperties: msRest.CompositeMapper = {
type: {
name: "Dictionary",
value: {
- type: {
- name: "Object"
- }
+ type: { name: "Dictionary", value: { type: { name: "any" } } }
}
}
},
generatedProperties: {
- readOnly: true,
serializedName: "generatedProperties",
+ readOnly: true,
type: {
name: "String"
}
},
createdAt: {
- readOnly: true,
serializedName: "createdAt",
+ readOnly: true,
type: {
name: "String"
}
},
updatedAt: {
- readOnly: true,
serializedName: "updatedAt",
+ readOnly: true,
type: {
name: "String"
}
@@ -1062,95 +1111,189 @@ export const BindingResourceProperties: msRest.CompositeMapper = {
}
};
-export const BindingResource: msRest.CompositeMapper = {
- serializedName: "BindingResource",
+export const BindingResourceCollection: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "BindingResource",
+ className: "BindingResourceCollection",
modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
+ value: {
+ serializedName: "value",
type: {
- name: "Composite",
- className: "BindingResourceProperties"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "BindingResource"
+ }
+ }
+ }
+ },
+ nextLink: {
+ serializedName: "nextLink",
+ type: {
+ name: "String"
}
}
}
}
};
-export const CertificateProperties: msRest.CompositeMapper = {
- serializedName: "CertificateProperties",
+export const StorageProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "CertificateProperties",
+ className: "StorageProperties",
+ uberParent: "StorageProperties",
+ polymorphicDiscriminator: {
+ serializedName: "storageType",
+ clientName: "storageType"
+ },
modelProperties: {
- thumbprint: {
- readOnly: true,
- serializedName: "thumbprint",
+ storageType: {
+ defaultValue: "StorageAccount",
+ isConstant: true,
+ serializedName: "storageType",
type: {
name: "String"
}
- },
- vaultUri: {
- required: true,
- serializedName: "vaultUri",
+ }
+ }
+ }
+};
+
+export const SystemData: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "SystemData",
+ modelProperties: {
+ createdBy: {
+ serializedName: "createdBy",
type: {
name: "String"
}
},
- keyVaultCertName: {
- required: true,
- serializedName: "keyVaultCertName",
+ createdByType: {
+ serializedName: "createdByType",
type: {
name: "String"
}
},
- certVersion: {
- serializedName: "certVersion",
+ createdAt: {
+ serializedName: "createdAt",
type: {
- name: "String"
+ name: "DateTime"
}
},
- issuer: {
- readOnly: true,
- serializedName: "issuer",
+ lastModifiedBy: {
+ serializedName: "lastModifiedBy",
type: {
name: "String"
}
},
- issuedDate: {
- readOnly: true,
- serializedName: "issuedDate",
+ lastModifiedByType: {
+ serializedName: "lastModifiedByType",
type: {
name: "String"
}
},
- expirationDate: {
- readOnly: true,
- serializedName: "expirationDate",
+ lastModifiedAt: {
+ serializedName: "lastModifiedAt",
type: {
- name: "String"
+ name: "DateTime"
}
- },
- activateDate: {
- readOnly: true,
- serializedName: "activateDate",
+ }
+ }
+ }
+};
+
+export const StorageResourceCollection: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "StorageResourceCollection",
+ modelProperties: {
+ value: {
+ serializedName: "value",
type: {
- name: "String"
- }
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "StorageResource"
+ }
+ }
+ }
},
- subjectName: {
+ nextLink: {
+ serializedName: "nextLink",
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
+export const CertificateProperties: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "CertificateProperties",
+ uberParent: "CertificateProperties",
+ polymorphicDiscriminator: {
+ serializedName: "type",
+ clientName: "type"
+ },
+ modelProperties: {
+ type: {
+ serializedName: "type",
+ required: true,
+ type: {
+ name: "String"
+ }
+ },
+ thumbprint: {
+ serializedName: "thumbprint",
+ readOnly: true,
+ type: {
+ name: "String"
+ }
+ },
+ issuer: {
+ serializedName: "issuer",
+ readOnly: true,
+ type: {
+ name: "String"
+ }
+ },
+ issuedDate: {
+ serializedName: "issuedDate",
+ readOnly: true,
+ type: {
+ name: "String"
+ }
+ },
+ expirationDate: {
+ serializedName: "expirationDate",
+ readOnly: true,
+ type: {
+ name: "String"
+ }
+ },
+ activateDate: {
+ serializedName: "activateDate",
readOnly: true,
+ type: {
+ name: "String"
+ }
+ },
+ subjectName: {
serializedName: "subjectName",
+ readOnly: true,
type: {
name: "String"
}
},
dnsNames: {
- readOnly: true,
serializedName: "dnsNames",
+ readOnly: true,
type: {
name: "Sequence",
element: {
@@ -1164,40 +1307,48 @@ export const CertificateProperties: msRest.CompositeMapper = {
}
};
-export const CertificateResource: msRest.CompositeMapper = {
- serializedName: "CertificateResource",
+export const CertificateResourceCollection: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "CertificateResource",
+ className: "CertificateResourceCollection",
modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
+ value: {
+ serializedName: "value",
type: {
- name: "Composite",
- className: "CertificateProperties"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "CertificateResource"
+ }
+ }
+ }
+ },
+ nextLink: {
+ serializedName: "nextLink",
+ type: {
+ name: "String"
}
}
}
}
};
-export const NameAvailabilityParameters: msRest.CompositeMapper = {
- serializedName: "NameAvailabilityParameters",
+export const NameAvailabilityParameters: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "NameAvailabilityParameters",
modelProperties: {
type: {
- required: true,
serializedName: "type",
+ required: true,
type: {
name: "String"
}
},
name: {
- required: true,
serializedName: "name",
+ required: true,
type: {
name: "String"
}
@@ -1206,8 +1357,7 @@ export const NameAvailabilityParameters: msRest.CompositeMapper = {
}
};
-export const NameAvailability: msRest.CompositeMapper = {
- serializedName: "NameAvailability",
+export const NameAvailability: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "NameAvailability",
@@ -1234,8 +1384,7 @@ export const NameAvailability: msRest.CompositeMapper = {
}
};
-export const CustomDomainProperties: msRest.CompositeMapper = {
- serializedName: "CustomDomainProperties",
+export const CustomDomainProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "CustomDomainProperties",
@@ -1247,8 +1396,8 @@ export const CustomDomainProperties: msRest.CompositeMapper = {
}
},
appName: {
- readOnly: true,
serializedName: "appName",
+ readOnly: true,
type: {
name: "String"
}
@@ -1263,33 +1412,41 @@ export const CustomDomainProperties: msRest.CompositeMapper = {
}
};
-export const CustomDomainResource: msRest.CompositeMapper = {
- serializedName: "CustomDomainResource",
+export const CustomDomainResourceCollection: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "CustomDomainResource",
+ className: "CustomDomainResourceCollection",
modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
+ value: {
+ serializedName: "value",
type: {
- name: "Composite",
- className: "CustomDomainProperties"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "CustomDomainResource"
+ }
+ }
+ }
+ },
+ nextLink: {
+ serializedName: "nextLink",
+ type: {
+ name: "String"
}
}
}
}
};
-export const CustomDomainValidatePayload: msRest.CompositeMapper = {
- serializedName: "CustomDomainValidatePayload",
+export const CustomDomainValidatePayload: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "CustomDomainValidatePayload",
modelProperties: {
name: {
- required: true,
serializedName: "name",
+ required: true,
type: {
name: "String"
}
@@ -1298,8 +1455,7 @@ export const CustomDomainValidatePayload: msRest.CompositeMapper = {
}
};
-export const CustomDomainValidateResult: msRest.CompositeMapper = {
- serializedName: "CustomDomainValidateResult",
+export const CustomDomainValidateResult: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "CustomDomainValidateResult",
@@ -1320,244 +1476,180 @@ export const CustomDomainValidateResult: msRest.CompositeMapper = {
}
};
-export const UserSourceInfo: msRest.CompositeMapper = {
- serializedName: "UserSourceInfo",
+export const DeploymentResourceProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "UserSourceInfo",
+ className: "DeploymentResourceProperties",
modelProperties: {
- type: {
- serializedName: "type",
+ source: {
+ serializedName: "source",
type: {
- name: "String"
+ name: "Composite",
+ className: "UserSourceInfo"
}
},
- relativePath: {
- serializedName: "relativePath",
+ appName: {
+ serializedName: "appName",
+ readOnly: true,
type: {
name: "String"
}
},
- version: {
- serializedName: "version",
+ deploymentSettings: {
+ serializedName: "deploymentSettings",
type: {
- name: "String"
+ name: "Composite",
+ className: "DeploymentSettings"
}
},
- artifactSelector: {
- serializedName: "artifactSelector",
+ provisioningState: {
+ serializedName: "provisioningState",
+ readOnly: true,
type: {
name: "String"
}
- }
- }
- }
-};
-
-export const DeploymentSettings: msRest.CompositeMapper = {
- serializedName: "DeploymentSettings",
- type: {
- name: "Composite",
- className: "DeploymentSettings",
- modelProperties: {
- cpu: {
- serializedName: "cpu",
- defaultValue: 1,
- type: {
- name: "Number"
- }
},
- memoryInGB: {
- serializedName: "memoryInGB",
- defaultValue: 1,
+ status: {
+ serializedName: "status",
+ readOnly: true,
type: {
- name: "Number"
+ name: "String"
}
},
- jvmOptions: {
- serializedName: "jvmOptions",
+ active: {
+ serializedName: "active",
+ readOnly: true,
type: {
- name: "String"
+ name: "Boolean"
}
},
- netCoreMainEntryPath: {
- serializedName: "netCoreMainEntryPath",
+ createdTime: {
+ serializedName: "createdTime",
+ readOnly: true,
type: {
- name: "String"
+ name: "DateTime"
}
},
- environmentVariables: {
- serializedName: "environmentVariables",
+ instances: {
+ serializedName: "instances",
+ readOnly: true,
type: {
- name: "Dictionary",
- value: {
+ name: "Sequence",
+ element: {
type: {
- name: "String"
+ name: "Composite",
+ className: "DeploymentInstance"
}
}
}
- },
- runtimeVersion: {
- serializedName: "runtimeVersion",
- type: {
- name: "String"
- }
}
}
}
};
-export const DeploymentInstance: msRest.CompositeMapper = {
- serializedName: "DeploymentInstance",
+export const UserSourceInfo: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "DeploymentInstance",
+ className: "UserSourceInfo",
modelProperties: {
- name: {
- readOnly: true,
- serializedName: "name",
+ type: {
+ serializedName: "type",
type: {
name: "String"
}
},
- status: {
- readOnly: true,
- serializedName: "status",
+ relativePath: {
+ serializedName: "relativePath",
type: {
name: "String"
}
},
- reason: {
- readOnly: true,
- serializedName: "reason",
+ version: {
+ serializedName: "version",
type: {
name: "String"
}
},
- discoveryStatus: {
- readOnly: true,
- serializedName: "discoveryStatus",
+ artifactSelector: {
+ serializedName: "artifactSelector",
type: {
name: "String"
}
},
- startTime: {
- readOnly: true,
- serializedName: "startTime",
+ customContainer: {
+ serializedName: "customContainer",
type: {
- name: "String"
+ name: "Composite",
+ className: "CustomContainer"
}
}
}
}
};
-export const DeploymentResourceProperties: msRest.CompositeMapper = {
- serializedName: "DeploymentResourceProperties",
+export const CustomContainer: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "DeploymentResourceProperties",
+ className: "CustomContainer",
modelProperties: {
- source: {
- serializedName: "source",
+ server: {
+ serializedName: "server",
type: {
- name: "Composite",
- className: "UserSourceInfo"
+ name: "String"
}
},
- appName: {
- readOnly: true,
- serializedName: "appName",
+ containerImage: {
+ serializedName: "containerImage",
type: {
name: "String"
}
},
- deploymentSettings: {
- serializedName: "deploymentSettings",
+ command: {
+ serializedName: "command",
type: {
- name: "Composite",
- className: "DeploymentSettings"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
}
},
- provisioningState: {
- readOnly: true,
- serializedName: "provisioningState",
+ args: {
+ serializedName: "args",
type: {
- name: "String"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
}
},
- status: {
- readOnly: true,
- serializedName: "status",
- type: {
- name: "String"
- }
- },
- active: {
- readOnly: true,
- serializedName: "active",
- type: {
- name: "Boolean"
- }
- },
- createdTime: {
- readOnly: true,
- serializedName: "createdTime",
- type: {
- name: "DateTime"
- }
- },
- instances: {
- readOnly: true,
- serializedName: "instances",
+ imageRegistryCredential: {
+ serializedName: "imageRegistryCredential",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "DeploymentInstance"
- }
- }
+ name: "Composite",
+ className: "ImageRegistryCredential"
}
}
}
}
};
-export const DeploymentResource: msRest.CompositeMapper = {
- serializedName: "DeploymentResource",
+export const ImageRegistryCredential: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "DeploymentResource",
+ className: "ImageRegistryCredential",
modelProperties: {
- ...ProxyResource.type.modelProperties,
- properties: {
- serializedName: "properties",
+ username: {
+ serializedName: "username",
type: {
- name: "Composite",
- className: "DeploymentResourceProperties"
+ name: "String"
}
},
- sku: {
- serializedName: "sku",
- type: {
- name: "Composite",
- className: "Sku"
- }
- }
- }
- }
-};
-
-export const LogFileUrlResponse: msRest.CompositeMapper = {
- serializedName: "LogFileUrlResponse",
- type: {
- name: "Composite",
- className: "LogFileUrlResponse",
- modelProperties: {
- url: {
- required: true,
- serializedName: "url",
+ password: {
+ serializedName: "password",
type: {
name: "String"
}
@@ -1566,60 +1658,54 @@ export const LogFileUrlResponse: msRest.CompositeMapper = {
}
};
-export const OperationDisplay: msRest.CompositeMapper = {
- serializedName: "OperationDisplay",
+export const DeploymentSettings: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "OperationDisplay",
+ className: "DeploymentSettings",
modelProperties: {
- provider: {
- serializedName: "provider",
+ cpu: {
+ defaultValue: 1,
+ serializedName: "cpu",
type: {
- name: "String"
+ name: "Number"
}
},
- resource: {
- serializedName: "resource",
+ memoryInGB: {
+ defaultValue: 1,
+ serializedName: "memoryInGB",
type: {
- name: "String"
+ name: "Number"
}
},
- operation: {
- serializedName: "operation",
+ resourceRequests: {
+ serializedName: "resourceRequests",
type: {
- name: "String"
+ name: "Composite",
+ className: "ResourceRequests"
}
},
- description: {
- serializedName: "description",
+ jvmOptions: {
+ serializedName: "jvmOptions",
type: {
name: "String"
}
- }
- }
- }
-};
-
-export const LogSpecification: msRest.CompositeMapper = {
- serializedName: "LogSpecification",
- type: {
- name: "Composite",
- className: "LogSpecification",
- modelProperties: {
- name: {
- serializedName: "name",
+ },
+ netCoreMainEntryPath: {
+ serializedName: "netCoreMainEntryPath",
type: {
name: "String"
}
},
- displayName: {
- serializedName: "displayName",
+ environmentVariables: {
+ serializedName: "environmentVariables",
type: {
- name: "String"
+ name: "Dictionary",
+ value: { type: { name: "String" } }
}
},
- blobDuration: {
- serializedName: "blobDuration",
+ runtimeVersion: {
+ defaultValue: "Java_8",
+ serializedName: "runtimeVersion",
type: {
name: "String"
}
@@ -1628,20 +1714,19 @@ export const LogSpecification: msRest.CompositeMapper = {
}
};
-export const MetricDimension: msRest.CompositeMapper = {
- serializedName: "MetricDimension",
+export const ResourceRequests: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "MetricDimension",
+ className: "ResourceRequests",
modelProperties: {
- name: {
- serializedName: "name",
+ cpu: {
+ serializedName: "cpu",
type: {
name: "String"
}
},
- displayName: {
- serializedName: "displayName",
+ memory: {
+ serializedName: "memory",
type: {
name: "String"
}
@@ -1650,145 +1735,175 @@ export const MetricDimension: msRest.CompositeMapper = {
}
};
-export const MetricSpecification: msRest.CompositeMapper = {
- serializedName: "MetricSpecification",
+export const DeploymentInstance: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "MetricSpecification",
+ className: "DeploymentInstance",
modelProperties: {
name: {
serializedName: "name",
+ readOnly: true,
type: {
name: "String"
}
},
- displayName: {
- serializedName: "displayName",
- type: {
- name: "String"
- }
- },
- displayDescription: {
- serializedName: "displayDescription",
+ status: {
+ serializedName: "status",
+ readOnly: true,
type: {
name: "String"
}
},
- unit: {
- serializedName: "unit",
+ reason: {
+ serializedName: "reason",
+ readOnly: true,
type: {
name: "String"
}
},
- category: {
- serializedName: "category",
+ discoveryStatus: {
+ serializedName: "discoveryStatus",
+ readOnly: true,
type: {
name: "String"
}
},
- aggregationType: {
- serializedName: "aggregationType",
+ startTime: {
+ serializedName: "startTime",
+ readOnly: true,
type: {
name: "String"
}
- },
- supportedAggregationTypes: {
- serializedName: "supportedAggregationTypes",
+ }
+ }
+ }
+};
+
+export const DeploymentResourceCollection: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "DeploymentResourceCollection",
+ modelProperties: {
+ value: {
+ serializedName: "value",
type: {
name: "Sequence",
element: {
type: {
- name: "String"
+ name: "Composite",
+ className: "DeploymentResource"
}
}
}
},
- supportedTimeGrainTypes: {
- serializedName: "supportedTimeGrainTypes",
+ nextLink: {
+ serializedName: "nextLink",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "String"
- }
- }
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
+export const LogFileUrlResponse: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "LogFileUrlResponse",
+ modelProperties: {
+ url: {
+ serializedName: "url",
+ required: true,
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
+export const DiagnosticParameters: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "DiagnosticParameters",
+ modelProperties: {
+ appInstance: {
+ serializedName: "appInstance",
+ type: {
+ name: "String"
}
},
- fillGapWithZero: {
- serializedName: "fillGapWithZero",
+ filePath: {
+ serializedName: "filePath",
type: {
- name: "Boolean"
+ name: "String"
}
},
- dimensions: {
- serializedName: "dimensions",
+ duration: {
+ serializedName: "duration",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "MetricDimension"
- }
- }
+ name: "String"
}
}
}
}
};
-export const ServiceSpecification: msRest.CompositeMapper = {
- serializedName: "ServiceSpecification",
+export const ServiceResourceList: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ServiceSpecification",
+ className: "ServiceResourceList",
modelProperties: {
- logSpecifications: {
- serializedName: "logSpecifications",
+ value: {
+ serializedName: "value",
type: {
name: "Sequence",
element: {
type: {
name: "Composite",
- className: "LogSpecification"
+ className: "ServiceResource"
}
}
}
},
- metricSpecifications: {
- serializedName: "metricSpecifications",
+ nextLink: {
+ serializedName: "nextLink",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "MetricSpecification"
- }
- }
+ name: "String"
}
}
}
}
};
-export const OperationProperties: msRest.CompositeMapper = {
- serializedName: "OperationProperties",
+export const AvailableOperations: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "OperationProperties",
+ className: "AvailableOperations",
modelProperties: {
- serviceSpecification: {
- serializedName: "serviceSpecification",
+ value: {
+ serializedName: "value",
type: {
- name: "Composite",
- className: "ServiceSpecification"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "Composite",
+ className: "OperationDetail"
+ }
+ }
+ }
+ },
+ nextLink: {
+ serializedName: "nextLink",
+ type: {
+ name: "String"
}
}
}
}
};
-export const OperationDetail: msRest.CompositeMapper = {
- serializedName: "OperationDetail",
+export const OperationDetail: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "OperationDetail",
@@ -1829,33 +1944,31 @@ export const OperationDetail: msRest.CompositeMapper = {
}
};
-export const SkuCapacity: msRest.CompositeMapper = {
- serializedName: "SkuCapacity",
+export const OperationDisplay: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "SkuCapacity",
+ className: "OperationDisplay",
modelProperties: {
- minimum: {
- required: true,
- serializedName: "minimum",
+ provider: {
+ serializedName: "provider",
type: {
- name: "Number"
+ name: "String"
}
},
- maximum: {
- serializedName: "maximum",
+ resource: {
+ serializedName: "resource",
type: {
- name: "Number"
+ name: "String"
}
},
- default: {
- serializedName: "default",
+ operation: {
+ serializedName: "operation",
type: {
- name: "Number"
+ name: "String"
}
},
- scaleType: {
- serializedName: "scaleType",
+ description: {
+ serializedName: "description",
type: {
name: "String"
}
@@ -1864,53 +1977,47 @@ export const SkuCapacity: msRest.CompositeMapper = {
}
};
-export const ResourceSkuCapabilities: msRest.CompositeMapper = {
- serializedName: "ResourceSkuCapabilities",
+export const OperationProperties: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ResourceSkuCapabilities",
+ className: "OperationProperties",
modelProperties: {
- name: {
- serializedName: "name",
- type: {
- name: "String"
- }
- },
- value: {
- serializedName: "value",
+ serviceSpecification: {
+ serializedName: "serviceSpecification",
type: {
- name: "String"
+ name: "Composite",
+ className: "ServiceSpecification"
}
}
}
}
};
-export const ResourceSkuZoneDetails: msRest.CompositeMapper = {
- serializedName: "ResourceSkuZoneDetails",
+export const ServiceSpecification: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ResourceSkuZoneDetails",
+ className: "ServiceSpecification",
modelProperties: {
- name: {
- serializedName: "name",
+ logSpecifications: {
+ serializedName: "logSpecifications",
type: {
name: "Sequence",
element: {
type: {
- name: "String"
+ name: "Composite",
+ className: "LogSpecification"
}
}
}
},
- capabilities: {
- serializedName: "capabilities",
+ metricSpecifications: {
+ serializedName: "metricSpecifications",
type: {
name: "Sequence",
element: {
type: {
name: "Composite",
- className: "ResourceSkuCapabilities"
+ className: "MetricSpecification"
}
}
}
@@ -1919,20 +2026,76 @@ export const ResourceSkuZoneDetails: msRest.CompositeMapper = {
}
};
-export const ResourceSkuLocationInfo: msRest.CompositeMapper = {
- serializedName: "ResourceSkuLocationInfo",
+export const LogSpecification: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ResourceSkuLocationInfo",
+ className: "LogSpecification",
modelProperties: {
- location: {
- serializedName: "location",
+ name: {
+ serializedName: "name",
type: {
name: "String"
}
},
- zones: {
- serializedName: "zones",
+ displayName: {
+ serializedName: "displayName",
+ type: {
+ name: "String"
+ }
+ },
+ blobDuration: {
+ serializedName: "blobDuration",
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
+export const MetricSpecification: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "MetricSpecification",
+ modelProperties: {
+ name: {
+ serializedName: "name",
+ type: {
+ name: "String"
+ }
+ },
+ displayName: {
+ serializedName: "displayName",
+ type: {
+ name: "String"
+ }
+ },
+ displayDescription: {
+ serializedName: "displayDescription",
+ type: {
+ name: "String"
+ }
+ },
+ unit: {
+ serializedName: "unit",
+ type: {
+ name: "String"
+ }
+ },
+ category: {
+ serializedName: "category",
+ type: {
+ name: "String"
+ }
+ },
+ aggregationType: {
+ serializedName: "aggregationType",
+ type: {
+ name: "String"
+ }
+ },
+ supportedAggregationTypes: {
+ serializedName: "supportedAggregationTypes",
type: {
name: "Sequence",
element: {
@@ -1942,46 +2105,86 @@ export const ResourceSkuLocationInfo: msRest.CompositeMapper = {
}
}
},
- zoneDetails: {
- serializedName: "zoneDetails",
+ supportedTimeGrainTypes: {
+ serializedName: "supportedTimeGrainTypes",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
+ }
+ },
+ fillGapWithZero: {
+ serializedName: "fillGapWithZero",
+ type: {
+ name: "Boolean"
+ }
+ },
+ dimensions: {
+ serializedName: "dimensions",
type: {
name: "Sequence",
element: {
type: {
name: "Composite",
- className: "ResourceSkuZoneDetails"
+ className: "MetricDimension"
}
}
}
+ },
+ sourceMdmNamespace: {
+ serializedName: "sourceMdmNamespace",
+ type: {
+ name: "String"
+ }
}
}
}
};
-export const ResourceSkuRestrictionInfo: msRest.CompositeMapper = {
- serializedName: "ResourceSkuRestrictionInfo",
+export const MetricDimension: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ResourceSkuRestrictionInfo",
+ className: "MetricDimension",
modelProperties: {
- locations: {
- serializedName: "locations",
+ name: {
+ serializedName: "name",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "String"
- }
- }
+ name: "String"
}
},
- zones: {
- serializedName: "zones",
+ displayName: {
+ serializedName: "displayName",
+ type: {
+ name: "String"
+ }
+ },
+ toBeExportedForShoebox: {
+ serializedName: "toBeExportedForShoebox",
+ type: {
+ name: "Boolean"
+ }
+ }
+ }
+ }
+};
+
+export const AvailableRuntimeVersions: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "AvailableRuntimeVersions",
+ modelProperties: {
+ value: {
+ serializedName: "value",
+ readOnly: true,
type: {
name: "Sequence",
element: {
type: {
- name: "String"
+ name: "Composite",
+ className: "SupportedRuntimeVersion"
}
}
}
@@ -1990,38 +2193,52 @@ export const ResourceSkuRestrictionInfo: msRest.CompositeMapper = {
}
};
-export const ResourceSkuRestrictions: msRest.CompositeMapper = {
- serializedName: "ResourceSkuRestrictions",
+export const SupportedRuntimeVersion: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ResourceSkuRestrictions",
+ className: "SupportedRuntimeVersion",
modelProperties: {
- type: {
- serializedName: "type",
+ value: {
+ serializedName: "value",
type: {
name: "String"
}
},
- values: {
- serializedName: "values",
+ platform: {
+ serializedName: "platform",
+ type: {
+ name: "String"
+ }
+ },
+ version: {
+ serializedName: "version",
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
+export const ResourceSkuCollection: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "ResourceSkuCollection",
+ modelProperties: {
+ value: {
+ serializedName: "value",
type: {
name: "Sequence",
element: {
type: {
- name: "String"
+ name: "Composite",
+ className: "ResourceSku"
}
}
}
},
- restrictionInfo: {
- serializedName: "restrictionInfo",
- type: {
- name: "Composite",
- className: "ResourceSkuRestrictionInfo"
- }
- },
- reasonCode: {
- serializedName: "reasonCode",
+ nextLink: {
+ serializedName: "nextLink",
type: {
name: "String"
}
@@ -2030,8 +2247,7 @@ export const ResourceSkuRestrictions: msRest.CompositeMapper = {
}
};
-export const ResourceSku: msRest.CompositeMapper = {
- serializedName: "ResourceSku",
+export const ResourceSku: coreClient.CompositeMapper = {
type: {
name: "Composite",
className: "ResourceSku",
@@ -2100,26 +2316,32 @@ export const ResourceSku: msRest.CompositeMapper = {
}
};
-export const SupportedRuntimeVersion: msRest.CompositeMapper = {
- serializedName: "SupportedRuntimeVersion",
+export const SkuCapacity: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "SupportedRuntimeVersion",
+ className: "SkuCapacity",
modelProperties: {
- value: {
- serializedName: "value",
+ minimum: {
+ serializedName: "minimum",
+ required: true,
type: {
- name: "String"
+ name: "Number"
}
},
- platform: {
- serializedName: "platform",
+ maximum: {
+ serializedName: "maximum",
type: {
- name: "String"
+ name: "Number"
}
},
- version: {
- serializedName: "version",
+ default: {
+ serializedName: "default",
+ type: {
+ name: "Number"
+ }
+ },
+ scaleType: {
+ serializedName: "scaleType",
type: {
name: "String"
}
@@ -2128,21 +2350,36 @@ export const SupportedRuntimeVersion: msRest.CompositeMapper = {
}
};
-export const AvailableRuntimeVersions: msRest.CompositeMapper = {
- serializedName: "AvailableRuntimeVersions",
+export const ResourceSkuLocationInfo: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "AvailableRuntimeVersions",
+ className: "ResourceSkuLocationInfo",
modelProperties: {
- value: {
- readOnly: true,
- serializedName: "value",
+ location: {
+ serializedName: "location",
+ type: {
+ name: "String"
+ }
+ },
+ zones: {
+ serializedName: "zones",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
+ }
+ },
+ zoneDetails: {
+ serializedName: "zoneDetails",
type: {
name: "Sequence",
element: {
type: {
name: "Composite",
- className: "SupportedRuntimeVersion"
+ className: "ResourceSkuZoneDetails"
}
}
}
@@ -2151,26 +2388,51 @@ export const AvailableRuntimeVersions: msRest.CompositeMapper = {
}
};
-export const ServiceResourceList: msRest.CompositeMapper = {
- serializedName: "ServiceResourceList",
+export const ResourceSkuZoneDetails: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ServiceResourceList",
+ className: "ResourceSkuZoneDetails",
modelProperties: {
- value: {
- serializedName: "",
+ name: {
+ serializedName: "name",
+ type: {
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
+ }
+ },
+ capabilities: {
+ serializedName: "capabilities",
type: {
name: "Sequence",
element: {
type: {
name: "Composite",
- className: "ServiceResource"
+ className: "ResourceSkuCapabilities"
}
}
}
+ }
+ }
+ }
+};
+
+export const ResourceSkuCapabilities: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "ResourceSkuCapabilities",
+ modelProperties: {
+ name: {
+ serializedName: "name",
+ type: {
+ name: "String"
+ }
},
- nextLink: {
- serializedName: "nextLink",
+ value: {
+ serializedName: "value",
type: {
name: "String"
}
@@ -2179,26 +2441,37 @@ export const ServiceResourceList: msRest.CompositeMapper = {
}
};
-export const AppResourceCollection: msRest.CompositeMapper = {
- serializedName: "AppResourceCollection",
+export const ResourceSkuRestrictions: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "AppResourceCollection",
+ className: "ResourceSkuRestrictions",
modelProperties: {
- value: {
- serializedName: "",
+ type: {
+ serializedName: "type",
+ type: {
+ name: "String"
+ }
+ },
+ values: {
+ serializedName: "values",
type: {
name: "Sequence",
element: {
type: {
- name: "Composite",
- className: "AppResource"
+ name: "String"
}
}
}
},
- nextLink: {
- serializedName: "nextLink",
+ restrictionInfo: {
+ serializedName: "restrictionInfo",
+ type: {
+ name: "Composite",
+ className: "ResourceSkuRestrictionInfo"
+ }
+ },
+ reasonCode: {
+ serializedName: "reasonCode",
type: {
name: "String"
}
@@ -2207,54 +2480,83 @@ export const AppResourceCollection: msRest.CompositeMapper = {
}
};
-export const BindingResourceCollection: msRest.CompositeMapper = {
- serializedName: "BindingResourceCollection",
+export const ResourceSkuRestrictionInfo: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "BindingResourceCollection",
+ className: "ResourceSkuRestrictionInfo",
modelProperties: {
- value: {
- serializedName: "",
+ locations: {
+ serializedName: "locations",
type: {
name: "Sequence",
element: {
type: {
- name: "Composite",
- className: "BindingResource"
+ name: "String"
}
}
}
},
- nextLink: {
- serializedName: "nextLink",
+ zones: {
+ serializedName: "zones",
type: {
- name: "String"
+ name: "Sequence",
+ element: {
+ type: {
+ name: "String"
+ }
+ }
}
}
}
}
};
-export const CertificateResourceCollection: msRest.CompositeMapper = {
- serializedName: "CertificateResourceCollection",
+export const TrackedResource: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "CertificateResourceCollection",
+ className: "TrackedResource",
modelProperties: {
- value: {
- serializedName: "",
+ ...Resource.type.modelProperties,
+ location: {
+ serializedName: "location",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "CertificateResource"
- }
- }
+ name: "String"
}
},
- nextLink: {
- serializedName: "nextLink",
+ tags: {
+ serializedName: "tags",
+ type: {
+ name: "Dictionary",
+ value: { type: { name: "String" } }
+ }
+ }
+ }
+ }
+};
+
+export const ProxyResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "ProxyResource",
+ modelProperties: {
+ ...Resource.type.modelProperties
+ }
+ }
+};
+
+export const AzureFileVolume: coreClient.CompositeMapper = {
+ serializedName: "AzureFileVolume",
+ type: {
+ name: "Composite",
+ className: "AzureFileVolume",
+ uberParent: "CustomPersistentDiskProperties",
+ polymorphicDiscriminator:
+ CustomPersistentDiskProperties.type.polymorphicDiscriminator,
+ modelProperties: {
+ ...CustomPersistentDiskProperties.type.modelProperties,
+ shareName: {
+ serializedName: "shareName",
+ required: true,
type: {
name: "String"
}
@@ -2263,26 +2565,25 @@ export const CertificateResourceCollection: msRest.CompositeMapper = {
}
};
-export const CustomDomainResourceCollection: msRest.CompositeMapper = {
- serializedName: "CustomDomainResourceCollection",
+export const StorageAccount: coreClient.CompositeMapper = {
+ serializedName: "StorageAccount",
type: {
name: "Composite",
- className: "CustomDomainResourceCollection",
+ className: "StorageAccount",
+ uberParent: "StorageProperties",
+ polymorphicDiscriminator: StorageProperties.type.polymorphicDiscriminator,
modelProperties: {
- value: {
- serializedName: "",
+ ...StorageProperties.type.modelProperties,
+ accountName: {
+ serializedName: "accountName",
+ required: true,
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "CustomDomainResource"
- }
- }
+ name: "String"
}
},
- nextLink: {
- serializedName: "nextLink",
+ accountKey: {
+ serializedName: "accountKey",
+ required: true,
type: {
name: "String"
}
@@ -2291,26 +2592,60 @@ export const CustomDomainResourceCollection: msRest.CompositeMapper = {
}
};
-export const DeploymentResourceCollection: msRest.CompositeMapper = {
- serializedName: "DeploymentResourceCollection",
+export const KeyVaultCertificateProperties: coreClient.CompositeMapper = {
+ serializedName: "KeyVaultCertificate",
type: {
name: "Composite",
- className: "DeploymentResourceCollection",
+ className: "KeyVaultCertificateProperties",
+ uberParent: "CertificateProperties",
+ polymorphicDiscriminator:
+ CertificateProperties.type.polymorphicDiscriminator,
modelProperties: {
- value: {
- serializedName: "",
+ ...CertificateProperties.type.modelProperties,
+ vaultUri: {
+ serializedName: "vaultUri",
+ required: true,
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "DeploymentResource"
- }
- }
+ name: "String"
}
},
- nextLink: {
- serializedName: "nextLink",
+ keyVaultCertName: {
+ serializedName: "keyVaultCertName",
+ required: true,
+ type: {
+ name: "String"
+ }
+ },
+ certVersion: {
+ serializedName: "certVersion",
+ type: {
+ name: "String"
+ }
+ },
+ excludePrivateKey: {
+ defaultValue: false,
+ serializedName: "excludePrivateKey",
+ type: {
+ name: "Boolean"
+ }
+ }
+ }
+ }
+};
+
+export const ContentCertificateProperties: coreClient.CompositeMapper = {
+ serializedName: "ContentCertificate",
+ type: {
+ name: "Composite",
+ className: "ContentCertificateProperties",
+ uberParent: "CertificateProperties",
+ polymorphicDiscriminator:
+ CertificateProperties.type.polymorphicDiscriminator,
+ modelProperties: {
+ ...CertificateProperties.type.modelProperties,
+ content: {
+ serializedName: "content",
+ required: true,
type: {
name: "String"
}
@@ -2319,54 +2654,86 @@ export const DeploymentResourceCollection: msRest.CompositeMapper = {
}
};
-export const AvailableOperations: msRest.CompositeMapper = {
- serializedName: "AvailableOperations",
+export const ServiceResource: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "AvailableOperations",
+ className: "ServiceResource",
modelProperties: {
- value: {
- serializedName: "",
+ ...TrackedResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "OperationDetail"
- }
- }
+ name: "Composite",
+ className: "ClusterResourceProperties"
}
},
- nextLink: {
- serializedName: "nextLink",
+ sku: {
+ serializedName: "sku",
type: {
- name: "String"
+ name: "Composite",
+ className: "Sku"
}
}
}
}
};
-export const ResourceSkuCollection: msRest.CompositeMapper = {
- serializedName: "ResourceSkuCollection",
+export const ConfigServerResource: coreClient.CompositeMapper = {
type: {
name: "Composite",
- className: "ResourceSkuCollection",
+ className: "ConfigServerResource",
modelProperties: {
- value: {
- serializedName: "",
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
type: {
- name: "Sequence",
- element: {
- type: {
- name: "Composite",
- className: "ResourceSku"
- }
- }
+ name: "Composite",
+ className: "ConfigServerProperties"
+ }
+ }
+ }
+ }
+};
+
+export const MonitoringSettingResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "MonitoringSettingResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "MonitoringSettingProperties"
+ }
+ }
+ }
+ }
+};
+
+export const AppResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "AppResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "AppResourceProperties"
}
},
- nextLink: {
- serializedName: "nextLink",
+ identity: {
+ serializedName: "identity",
+ type: {
+ name: "Composite",
+ className: "ManagedIdentityProperties"
+ }
+ },
+ location: {
+ serializedName: "location",
type: {
name: "String"
}
@@ -2374,3 +2741,112 @@ export const ResourceSkuCollection: msRest.CompositeMapper = {
}
}
};
+
+export const BindingResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "BindingResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "BindingResourceProperties"
+ }
+ }
+ }
+ }
+};
+
+export const StorageResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "StorageResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "StorageProperties"
+ }
+ },
+ systemData: {
+ serializedName: "systemData",
+ type: {
+ name: "Composite",
+ className: "SystemData"
+ }
+ }
+ }
+ }
+};
+
+export const CertificateResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "CertificateResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "CertificateProperties"
+ }
+ }
+ }
+ }
+};
+
+export const CustomDomainResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "CustomDomainResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "CustomDomainProperties"
+ }
+ }
+ }
+ }
+};
+
+export const DeploymentResource: coreClient.CompositeMapper = {
+ type: {
+ name: "Composite",
+ className: "DeploymentResource",
+ modelProperties: {
+ ...ProxyResource.type.modelProperties,
+ properties: {
+ serializedName: "properties",
+ type: {
+ name: "Composite",
+ className: "DeploymentResourceProperties"
+ }
+ },
+ sku: {
+ serializedName: "sku",
+ type: {
+ name: "Composite",
+ className: "Sku"
+ }
+ }
+ }
+ }
+};
+
+export let discriminators = {
+ CustomPersistentDiskProperties: CustomPersistentDiskProperties,
+ StorageProperties: StorageProperties,
+ CertificateProperties: CertificateProperties,
+ "CustomPersistentDiskProperties.AzureFileVolume": AzureFileVolume,
+ "StorageProperties.StorageAccount": StorageAccount,
+ "CertificateProperties.KeyVaultCertificate": KeyVaultCertificateProperties,
+ "CertificateProperties.ContentCertificate": ContentCertificateProperties
+};
diff --git a/sdk/appplatform/arm-appplatform/src/models/monitoringSettingsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/monitoringSettingsMappers.ts
deleted file mode 100644
index 0463b1feac36..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/monitoringSettingsMappers.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RequiredTraffic,
- Resource,
- ServiceResource,
- Sku,
- TemporaryDisk,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/operationsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/operationsMappers.ts
deleted file mode 100644
index 218ea3c39ef1..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/operationsMappers.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- AvailableOperations,
- CloudError,
- LogSpecification,
- MetricDimension,
- MetricSpecification,
- OperationDetail,
- OperationDisplay,
- OperationProperties,
- ServiceSpecification
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/parameters.ts b/sdk/appplatform/arm-appplatform/src/models/parameters.ts
index 8ac2710fcff9..7fd525653a04 100644
--- a/sdk/appplatform/arm-appplatform/src/models/parameters.ts
+++ b/sdk/appplatform/arm-appplatform/src/models/parameters.ts
@@ -3,153 +3,278 @@
* 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 {
+ ServiceResource as ServiceResourceMapper,
+ RegenerateTestKeyRequestPayload as RegenerateTestKeyRequestPayloadMapper,
+ NameAvailabilityParameters as NameAvailabilityParametersMapper,
+ ConfigServerResource as ConfigServerResourceMapper,
+ ConfigServerSettings as ConfigServerSettingsMapper,
+ MonitoringSettingResource as MonitoringSettingResourceMapper,
+ AppResource as AppResourceMapper,
+ CustomDomainValidatePayload as CustomDomainValidatePayloadMapper,
+ BindingResource as BindingResourceMapper,
+ StorageResource as StorageResourceMapper,
+ CertificateResource as CertificateResourceMapper,
+ CustomDomainResource as CustomDomainResourceMapper,
+ DeploymentResource as DeploymentResourceMapper,
+ DiagnosticParameters as DiagnosticParametersMapper
+} from "../models/mappers";
-export const acceptLanguage: msRest.OperationParameter = {
- parameterPath: "acceptLanguage",
+export const accept: OperationParameter = {
+ parameterPath: "accept",
mapper: {
- serializedName: "accept-language",
- defaultValue: 'en-US',
+ defaultValue: "application/json",
+ isConstant: true,
+ serializedName: "Accept",
type: {
name: "String"
}
}
};
-export const apiVersion: msRest.OperationQueryParameter = {
- parameterPath: "apiVersion",
+
+export const $host: OperationURLParameter = {
+ parameterPath: "$host",
mapper: {
+ serializedName: "$host",
required: true,
- serializedName: "api-version",
- constraints: {
- MinLength: 1
- },
type: {
name: "String"
}
- }
+ },
+ skipEncoding: true
};
-export const appName: msRest.OperationURLParameter = {
- parameterPath: "appName",
+
+export const apiVersion: OperationQueryParameter = {
+ parameterPath: "apiVersion",
mapper: {
- required: true,
- serializedName: "appName",
+ defaultValue: "2021-09-01-preview",
+ isConstant: true,
+ serializedName: "api-version",
type: {
name: "String"
}
}
};
-export const bindingName: msRest.OperationURLParameter = {
- parameterPath: "bindingName",
+
+export const subscriptionId: OperationURLParameter = {
+ parameterPath: "subscriptionId",
mapper: {
+ serializedName: "subscriptionId",
required: true,
- serializedName: "bindingName",
type: {
name: "String"
}
}
};
-export const certificateName: msRest.OperationURLParameter = {
- parameterPath: "certificateName",
+
+export const resourceGroupName: OperationURLParameter = {
+ parameterPath: "resourceGroupName",
mapper: {
+ serializedName: "resourceGroupName",
required: true,
- serializedName: "certificateName",
type: {
name: "String"
}
}
};
-export const deploymentName: msRest.OperationURLParameter = {
- parameterPath: "deploymentName",
+
+export const serviceName: OperationURLParameter = {
+ parameterPath: "serviceName",
mapper: {
+ serializedName: "serviceName",
required: true,
- serializedName: "deploymentName",
type: {
name: "String"
}
}
};
-export const domainName: msRest.OperationURLParameter = {
- parameterPath: "domainName",
+
+export const contentType: OperationParameter = {
+ parameterPath: ["options", "contentType"],
mapper: {
- required: true,
- serializedName: "domainName",
+ defaultValue: "application/json",
+ isConstant: true,
+ serializedName: "Content-Type",
type: {
name: "String"
}
}
};
-export const location: msRest.OperationURLParameter = {
+
+export const resource: OperationParameter = {
+ parameterPath: "resource",
+ mapper: ServiceResourceMapper
+};
+
+export const regenerateTestKeyRequest: OperationParameter = {
+ parameterPath: "regenerateTestKeyRequest",
+ mapper: RegenerateTestKeyRequestPayloadMapper
+};
+
+export const availabilityParameters: OperationParameter = {
+ parameterPath: "availabilityParameters",
+ mapper: NameAvailabilityParametersMapper
+};
+
+export const location: OperationURLParameter = {
parameterPath: "location",
mapper: {
- required: true,
serializedName: "location",
+ required: true,
type: {
name: "String"
}
}
};
-export const nextPageLink: msRest.OperationURLParameter = {
- parameterPath: "nextPageLink",
+
+export const nextLink: OperationURLParameter = {
+ parameterPath: "nextLink",
mapper: {
- required: true,
serializedName: "nextLink",
+ required: true,
type: {
name: "String"
}
},
skipEncoding: true
};
-export const resourceGroupName: msRest.OperationURLParameter = {
- parameterPath: "resourceGroupName",
+
+export const configServerResource: OperationParameter = {
+ parameterPath: "configServerResource",
+ mapper: ConfigServerResourceMapper
+};
+
+export const configServerSettings: OperationParameter = {
+ parameterPath: "configServerSettings",
+ mapper: ConfigServerSettingsMapper
+};
+
+export const monitoringSettingResource: OperationParameter = {
+ parameterPath: "monitoringSettingResource",
+ mapper: MonitoringSettingResourceMapper
+};
+
+export const appName: OperationURLParameter = {
+ parameterPath: "appName",
mapper: {
+ serializedName: "appName",
required: true,
- serializedName: "resourceGroupName",
type: {
name: "String"
}
}
};
-export const serviceName: msRest.OperationURLParameter = {
- parameterPath: "serviceName",
+
+export const syncStatus: OperationQueryParameter = {
+ parameterPath: ["options", "syncStatus"],
mapper: {
+ serializedName: "syncStatus",
+ type: {
+ name: "String"
+ }
+ }
+};
+
+export const appResource: OperationParameter = {
+ parameterPath: "appResource",
+ mapper: AppResourceMapper
+};
+
+export const validatePayload: OperationParameter = {
+ parameterPath: "validatePayload",
+ mapper: CustomDomainValidatePayloadMapper
+};
+
+export const bindingName: OperationURLParameter = {
+ parameterPath: "bindingName",
+ mapper: {
+ serializedName: "bindingName",
required: true,
- serializedName: "serviceName",
type: {
name: "String"
}
}
};
-export const subscriptionId: msRest.OperationURLParameter = {
- parameterPath: "subscriptionId",
+
+export const bindingResource: OperationParameter = {
+ parameterPath: "bindingResource",
+ mapper: BindingResourceMapper
+};
+
+export const storageName: OperationURLParameter = {
+ parameterPath: "storageName",
mapper: {
+ serializedName: "storageName",
required: true,
- serializedName: "subscriptionId",
type: {
name: "String"
}
}
};
-export const syncStatus: msRest.OperationQueryParameter = {
- parameterPath: [
- "options",
- "syncStatus"
- ],
+
+export const storageResource: OperationParameter = {
+ parameterPath: "storageResource",
+ mapper: StorageResourceMapper
+};
+
+export const certificateName: OperationURLParameter = {
+ parameterPath: "certificateName",
mapper: {
- serializedName: "syncStatus",
+ serializedName: "certificateName",
+ required: true,
+ type: {
+ name: "String"
+ }
+ }
+};
+
+export const certificateResource: OperationParameter = {
+ parameterPath: "certificateResource",
+ mapper: CertificateResourceMapper
+};
+
+export const domainName: OperationURLParameter = {
+ parameterPath: "domainName",
+ mapper: {
+ serializedName: "domainName",
+ required: true,
+ type: {
+ name: "String"
+ }
+ }
+};
+
+export const domainResource: OperationParameter = {
+ parameterPath: "domainResource",
+ mapper: CustomDomainResourceMapper
+};
+
+export const deploymentName: OperationURLParameter = {
+ parameterPath: "deploymentName",
+ mapper: {
+ serializedName: "deploymentName",
+ required: true,
type: {
name: "String"
}
}
};
-export const version: msRest.OperationQueryParameter = {
- parameterPath: [
- "options",
- "version"
- ],
+
+export const deploymentResource: OperationParameter = {
+ parameterPath: "deploymentResource",
+ mapper: DeploymentResourceMapper
+};
+
+export const version: OperationQueryParameter = {
+ parameterPath: ["options", "version"],
mapper: {
serializedName: "version",
type: {
@@ -161,5 +286,10 @@ export const version: msRest.OperationQueryParameter = {
}
}
},
- collectionFormat: msRest.QueryCollectionFormat.Multi
+ collectionFormat: "Multi"
+};
+
+export const diagnosticParameters: OperationParameter = {
+ parameterPath: "diagnosticParameters",
+ mapper: DiagnosticParametersMapper
};
diff --git a/sdk/appplatform/arm-appplatform/src/models/runtimeVersionsMappers.ts b/sdk/appplatform/arm-appplatform/src/models/runtimeVersionsMappers.ts
deleted file mode 100644
index 04e9ae59bded..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/runtimeVersionsMappers.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- AvailableRuntimeVersions,
- CloudError,
- SupportedRuntimeVersion
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/servicesMappers.ts b/sdk/appplatform/arm-appplatform/src/models/servicesMappers.ts
deleted file mode 100644
index de115949d99c..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/servicesMappers.ts
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- ApplicationInsightsAgentVersions,
- AppResource,
- AppResourceProperties,
- BaseResource,
- BindingResource,
- BindingResourceProperties,
- CertificateProperties,
- CertificateResource,
- CloudError,
- ClusterResourceProperties,
- ConfigServerGitProperty,
- ConfigServerProperties,
- ConfigServerResource,
- ConfigServerSettings,
- CustomDomainProperties,
- CustomDomainResource,
- DeploymentInstance,
- DeploymentResource,
- DeploymentResourceProperties,
- DeploymentSettings,
- ErrorModel,
- GitPatternRepository,
- ManagedIdentityProperties,
- MonitoringSettingProperties,
- MonitoringSettingResource,
- NameAvailability,
- NameAvailabilityParameters,
- NetworkProfile,
- NetworkProfileOutboundIPs,
- PersistentDisk,
- ProxyResource,
- RegenerateTestKeyRequestPayload,
- RequiredTraffic,
- Resource,
- ServiceResource,
- ServiceResourceList,
- Sku,
- TemporaryDisk,
- TestKeys,
- TrackedResource,
- UserSourceInfo
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/models/skusMappers.ts b/sdk/appplatform/arm-appplatform/src/models/skusMappers.ts
deleted file mode 100644
index a5cf0046a0ab..000000000000
--- a/sdk/appplatform/arm-appplatform/src/models/skusMappers.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Copyright (c) Microsoft Corporation.
- * Licensed under the MIT License.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is regenerated.
- */
-
-export {
- CloudError,
- ResourceSku,
- ResourceSkuCapabilities,
- ResourceSkuCollection,
- ResourceSkuLocationInfo,
- ResourceSkuRestrictionInfo,
- ResourceSkuRestrictions,
- ResourceSkuZoneDetails,
- SkuCapacity
-} from "../models/mappers";
diff --git a/sdk/appplatform/arm-appplatform/src/operations/apps.ts b/sdk/appplatform/arm-appplatform/src/operations/apps.ts
index bfb1fd2a5c41..dbbad5142406 100644
--- a/sdk/appplatform/arm-appplatform/src/operations/apps.ts
+++ b/sdk/appplatform/arm-appplatform/src/operations/apps.ts
@@ -3,460 +3,579 @@
* 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/appsMappers";
+import { PagedAsyncIterableIterator } from "@azure/core-paging";
+import { Apps } from "../operationsInterfaces";
+import * as coreClient from "@azure/core-client";
+import * as Mappers from "../models/mappers";
import * as Parameters from "../models/parameters";
import { AppPlatformManagementClientContext } from "../appPlatformManagementClientContext";
+import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro";
+import { LroImpl } from "../lroImpl";
+import {
+ AppResource,
+ AppsListNextOptionalParams,
+ AppsListOptionalParams,
+ AppsGetOptionalParams,
+ AppsGetResponse,
+ AppsCreateOrUpdateOptionalParams,
+ AppsCreateOrUpdateResponse,
+ AppsDeleteOptionalParams,
+ AppsUpdateOptionalParams,
+ AppsUpdateResponse,
+ AppsListResponse,
+ AppsGetResourceUploadUrlOptionalParams,
+ AppsGetResourceUploadUrlResponse,
+ CustomDomainValidatePayload,
+ AppsValidateDomainOptionalParams,
+ AppsValidateDomainResponse,
+ AppsListNextResponse
+} from "../models";
-/** Class representing a Apps. */
-export class Apps {
+///
+/** Class containing Apps operations. */
+export class AppsImpl implements Apps {
private readonly client: AppPlatformManagementClientContext;
/**
- * Create a Apps.
- * @param {AppPlatformManagementClientContext} client Reference to the service client.
+ * Initialize a new instance of the class Apps class.
+ * @param client Reference to the service client
*/
constructor(client: AppPlatformManagementClientContext) {
this.client = client;
}
/**
- * Get an App and its properties.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param [options] The optional parameters
- * @returns Promise
- */
- get(resourceGroupName: string, serviceName: string, appName: string, options?: Models.AppsGetOptionalParams): Promise;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param callback The callback
- */
- get(resourceGroupName: string, serviceName: string, appName: string, callback: msRest.ServiceCallback): void;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Handles requests to list all resources in a Service.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param options The optional parameters
- * @param callback The callback
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, appName: string, options: Models.AppsGetOptionalParams, callback: msRest.ServiceCallback): void;
- get(resourceGroupName: string, serviceName: string, appName: string, options?: Models.AppsGetOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
- return this.client.sendOperationRequest(
- {
+ public list(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: AppsListOptionalParams
+ ): PagedAsyncIterableIterator {
+ const iter = this.listPagingAll(resourceGroupName, serviceName, options);
+ return {
+ next() {
+ return iter.next();
+ },
+ [Symbol.asyncIterator]() {
+ return this;
+ },
+ byPage: () => {
+ return this.listPagingPage(resourceGroupName, serviceName, options);
+ }
+ };
+ }
+
+ private async *listPagingPage(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: AppsListOptionalParams
+ ): AsyncIterableIterator {
+ let result = await this._list(resourceGroupName, serviceName, options);
+ yield result.value || [];
+ let continuationToken = result.nextLink;
+ while (continuationToken) {
+ result = await this._listNext(
resourceGroupName,
serviceName,
- appName,
+ continuationToken,
options
- },
- getOperationSpec,
- callback) as Promise;
+ );
+ continuationToken = result.nextLink;
+ yield result.value || [];
+ }
}
- /**
- * Create a new App or update an exiting App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param appResource Parameters for the create or update operation
- * @param [options] The optional parameters
- * @returns Promise
- */
- createOrUpdate(resourceGroupName: string, serviceName: string, appName: string, appResource: Models.AppResource, options?: msRest.RequestOptionsBase): Promise {
- return this.beginCreateOrUpdate(resourceGroupName,serviceName,appName,appResource,options)
- .then(lroPoller => lroPoller.pollUntilFinished()) as Promise;
+ private async *listPagingAll(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: AppsListOptionalParams
+ ): AsyncIterableIterator {
+ for await (const page of this.listPagingPage(
+ resourceGroupName,
+ serviceName,
+ options
+ )) {
+ yield* page;
+ }
}
/**
- * Operation to delete an App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Get an App and its properties.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- deleteMethod(resourceGroupName: string, serviceName: string, appName: string, options?: msRest.RequestOptionsBase): Promise {
- return this.beginDeleteMethod(resourceGroupName,serviceName,appName,options)
- .then(lroPoller => lroPoller.pollUntilFinished());
+ get(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: AppsGetOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, appName, options },
+ getOperationSpec
+ );
}
/**
- * Operation to update an exiting App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Create a new App or update an exiting App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param appResource Parameters for the update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param appResource Parameters for the create or update operation
+ * @param options The options parameters.
*/
- update(resourceGroupName: string, serviceName: string, appName: string, appResource: Models.AppResource, options?: msRest.RequestOptionsBase): Promise {
- return this.beginUpdate(resourceGroupName,serviceName,appName,appResource,options)
- .then(lroPoller => lroPoller.pollUntilFinished()) as Promise;
- }
+ async beginCreateOrUpdate(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ appResource: AppResource,
+ options?: AppsCreateOrUpdateOptionalParams
+ ): Promise<
+ PollerLike<
+ PollOperationState,
+ AppsCreateOrUpdateResponse
+ >
+ > {
+ 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()
+ }
+ };
+ };
- /**
- * Handles requests to list all resources in a Service.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param [options] The optional parameters
- * @returns Promise
- */
- list(resourceGroupName: string, serviceName: string, options?: msRest.RequestOptionsBase): Promise;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param callback The callback
- */
- list(resourceGroupName: string, serviceName: string, callback: msRest.ServiceCallback): void;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param options The optional parameters
- * @param callback The callback
- */
- list(resourceGroupName: string, serviceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
- list(resourceGroupName: string, serviceName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
- return this.client.sendOperationRequest(
- {
- resourceGroupName,
- serviceName,
- options
- },
- listOperationSpec,
- callback) as Promise;
+ const lro = new LroImpl(
+ sendOperation,
+ { resourceGroupName, serviceName, appName, appResource, options },
+ createOrUpdateOperationSpec
+ );
+ return new LroEngine(lro, {
+ resumeFrom: options?.resumeFrom,
+ intervalInMs: options?.updateIntervalInMs,
+ lroResourceLocationConfig: "azure-async-operation"
+ });
}
/**
- * Get an resource upload URL for an App, which may be artifacts or source archive.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param [options] The optional parameters
- * @returns Promise
- */
- getResourceUploadUrl(resourceGroupName: string, serviceName: string, appName: string, options?: msRest.RequestOptionsBase): Promise;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Create a new App or update an exiting App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param callback The callback
+ * @param appResource Parameters for the create or update operation
+ * @param options The options parameters.
*/
- getResourceUploadUrl(resourceGroupName: string, serviceName: string, appName: string, callback: msRest.ServiceCallback): void;
+ async beginCreateOrUpdateAndWait(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ appResource: AppResource,
+ options?: AppsCreateOrUpdateOptionalParams
+ ): Promise {
+ const poller = await this.beginCreateOrUpdate(
+ resourceGroupName,
+ serviceName,
+ appName,
+ appResource,
+ options
+ );
+ return poller.pollUntilDone();
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to delete an App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param options The optional parameters
- * @param callback The callback
+ * @param options The options parameters.
*/
- getResourceUploadUrl(resourceGroupName: string, serviceName: string, appName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
- getResourceUploadUrl(resourceGroupName: string, serviceName: string, appName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
- return this.client.sendOperationRequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- options
- },
- getResourceUploadUrlOperationSpec,
- callback) as Promise;
+ async beginDelete(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: AppsDeleteOptionalParams
+ ): 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, serviceName, appName, options },
+ deleteOperationSpec
+ );
+ return new LroEngine(lro, {
+ resumeFrom: options?.resumeFrom,
+ intervalInMs: options?.updateIntervalInMs,
+ lroResourceLocationConfig: "azure-async-operation"
+ });
}
/**
- * Check the resource name is valid as well as not in use.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to delete an App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param validatePayload Custom domain payload to be validated
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- validateDomain(resourceGroupName: string, serviceName: string, appName: string, validatePayload: Models.CustomDomainValidatePayload, options?: msRest.RequestOptionsBase): Promise;
+ async beginDeleteAndWait(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: AppsDeleteOptionalParams
+ ): Promise {
+ const poller = await this.beginDelete(
+ resourceGroupName,
+ serviceName,
+ appName,
+ options
+ );
+ return poller.pollUntilDone();
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to update an exiting App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param validatePayload Custom domain payload to be validated
- * @param callback The callback
+ * @param appResource Parameters for the update operation
+ * @param options The options parameters.
*/
- validateDomain(resourceGroupName: string, serviceName: string, appName: string, validatePayload: Models.CustomDomainValidatePayload, callback: msRest.ServiceCallback): void;
+ async beginUpdate(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ appResource: AppResource,
+ options?: AppsUpdateOptionalParams
+ ): Promise<
+ PollerLike, AppsUpdateResponse>
+ > {
+ 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, serviceName, appName, appResource, options },
+ updateOperationSpec
+ );
+ return new LroEngine(lro, {
+ resumeFrom: options?.resumeFrom,
+ intervalInMs: options?.updateIntervalInMs,
+ lroResourceLocationConfig: "azure-async-operation"
+ });
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to update an exiting App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param validatePayload Custom domain payload to be validated
- * @param options The optional parameters
- * @param callback The callback
+ * @param appResource Parameters for the update operation
+ * @param options The options parameters.
*/
- validateDomain(resourceGroupName: string, serviceName: string, appName: string, validatePayload: Models.CustomDomainValidatePayload, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
- validateDomain(resourceGroupName: string, serviceName: string, appName: string, validatePayload: Models.CustomDomainValidatePayload, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
- return this.client.sendOperationRequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- validatePayload,
- options
- },
- validateDomainOperationSpec,
- callback) as Promise;
+ async beginUpdateAndWait(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ appResource: AppResource,
+ options?: AppsUpdateOptionalParams
+ ): Promise {
+ const poller = await this.beginUpdate(
+ resourceGroupName,
+ serviceName,
+ appName,
+ appResource,
+ options
+ );
+ return poller.pollUntilDone();
}
/**
- * Create a new App or update an exiting App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Handles requests to list all resources in a Service.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param appResource Parameters for the create or update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- beginCreateOrUpdate(resourceGroupName: string, serviceName: string, appName: string, appResource: Models.AppResource, options?: msRest.RequestOptionsBase): Promise {
- return this.client.sendLRORequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- appResource,
- options
- },
- beginCreateOrUpdateOperationSpec,
- options);
+ private _list(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: AppsListOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, options },
+ listOperationSpec
+ );
}
/**
- * Operation to delete an App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Get an resource upload URL for an App, which may be artifacts or source archive.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- beginDeleteMethod(resourceGroupName: string, serviceName: string, appName: string, options?: msRest.RequestOptionsBase): Promise {
- return this.client.sendLRORequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- options
- },
- beginDeleteMethodOperationSpec,
- options);
+ getResourceUploadUrl(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: AppsGetResourceUploadUrlOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, appName, options },
+ getResourceUploadUrlOperationSpec
+ );
}
/**
- * Operation to update an exiting App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Check the resource name is valid as well as not in use.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param appResource Parameters for the update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param validatePayload Custom domain payload to be validated
+ * @param options The options parameters.
*/
- beginUpdate(resourceGroupName: string, serviceName: string, appName: string, appResource: Models.AppResource, options?: msRest.RequestOptionsBase): Promise {
- return this.client.sendLRORequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- appResource,
- options
- },
- beginUpdateOperationSpec,
- options);
+ validateDomain(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ validatePayload: CustomDomainValidatePayload,
+ options?: AppsValidateDomainOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, appName, validatePayload, options },
+ validateDomainOperationSpec
+ );
}
/**
- * Handles requests to list all resources in a Service.
- * @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 resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
+ * @param serviceName The name of the Service resource.
+ * @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,
+ serviceName: string,
+ nextLink: string,
+ options?: AppsListNextOptionalParams
+ ): Promise {
return this.client.sendOperationRequest(
- {
- nextPageLink,
- options
- },
- listNextOperationSpec,
- callback) as Promise;
+ { resourceGroupName, serviceName, nextLink, options },
+ listNextOperationSpec
+ );
}
}
-
// Operation Specifications
-const serializer = new msRest.Serializer(Mappers);
-const getOperationSpec: msRest.OperationSpec = {
- httpMethod: "GET",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
- urlParameters: [
- Parameters.subscriptionId,
- Parameters.resourceGroupName,
- Parameters.serviceName,
- Parameters.appName
- ],
- queryParameters: [
- Parameters.apiVersion,
- Parameters.syncStatus
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
- responses: {
- 200: {
- bodyMapper: Mappers.AppResource
- },
- default: {
- bodyMapper: Mappers.CloudError
- }
- },
- serializer
-};
+const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
-const listOperationSpec: msRest.OperationSpec = {
+const getOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
httpMethod: "GET",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps",
- urlParameters: [
- Parameters.subscriptionId,
- Parameters.resourceGroupName,
- Parameters.serviceName
- ],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
responses: {
200: {
- bodyMapper: Mappers.AppResourceCollection
+ bodyMapper: Mappers.AppResource
},
default: {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const getResourceUploadUrlOperationSpec: msRest.OperationSpec = {
- httpMethod: "POST",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/getResourceUploadUrl",
+ queryParameters: [Parameters.apiVersion, Parameters.syncStatus],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
+ headerParameters: [Parameters.accept],
+ serializer
+};
+const createOrUpdateOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
+ httpMethod: "PUT",
responses: {
200: {
- bodyMapper: Mappers.ResourceUploadDefinition
+ bodyMapper: Mappers.AppResource
+ },
+ 201: {
+ bodyMapper: Mappers.AppResource
+ },
+ 202: {
+ bodyMapper: Mappers.AppResource
+ },
+ 204: {
+ bodyMapper: Mappers.AppResource
},
default: {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const validateDomainOperationSpec: msRest.OperationSpec = {
- httpMethod: "POST",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/validateDomain",
+ requestBody: Parameters.appResource,
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
- requestBody: {
- parameterPath: "validatePayload",
- mapper: {
- ...Mappers.CustomDomainValidatePayload,
- required: true
- }
- },
+ headerParameters: [Parameters.accept, Parameters.contentType],
+ mediaType: "json",
+ serializer
+};
+const deleteOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
+ httpMethod: "DELETE",
responses: {
- 200: {
- bodyMapper: Mappers.CustomDomainValidateResult
- },
+ 200: {},
+ 201: {},
+ 202: {},
+ 204: {},
default: {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = {
- httpMethod: "PUT",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
- requestBody: {
- parameterPath: "appResource",
- mapper: {
- ...Mappers.AppResource,
- required: true
- }
- },
+ headerParameters: [Parameters.accept],
+ serializer
+};
+const updateOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
+ httpMethod: "PATCH",
responses: {
200: {
bodyMapper: Mappers.AppResource
@@ -467,88 +586,99 @@ const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = {
202: {
bodyMapper: Mappers.AppResource
},
+ 204: {
+ bodyMapper: Mappers.AppResource
+ },
default: {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const beginDeleteMethodOperationSpec: msRest.OperationSpec = {
- httpMethod: "DELETE",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
+ requestBody: Parameters.appResource,
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
+ headerParameters: [Parameters.accept, Parameters.contentType],
+ mediaType: "json",
+ serializer
+};
+const listOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps",
+ httpMethod: "GET",
responses: {
- 200: {},
- 202: {},
- 204: {},
+ 200: {
+ bodyMapper: Mappers.AppResourceCollection
+ },
default: {
bodyMapper: Mappers.CloudError
}
},
+ queryParameters: [Parameters.apiVersion],
+ urlParameters: [
+ Parameters.$host,
+ Parameters.subscriptionId,
+ Parameters.resourceGroupName,
+ Parameters.serviceName
+ ],
+ headerParameters: [Parameters.accept],
serializer
};
-
-const beginUpdateOperationSpec: msRest.OperationSpec = {
- httpMethod: "PATCH",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}",
+const getResourceUploadUrlOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/getResourceUploadUrl",
+ httpMethod: "POST",
+ responses: {
+ 200: {
+ bodyMapper: Mappers.ResourceUploadDefinition
+ },
+ default: {
+ bodyMapper: Mappers.CloudError
+ }
+ },
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
- requestBody: {
- parameterPath: "appResource",
- mapper: {
- ...Mappers.AppResource,
- required: true
- }
- },
+ headerParameters: [Parameters.accept],
+ serializer
+};
+const validateDomainOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/validateDomain",
+ httpMethod: "POST",
responses: {
200: {
- bodyMapper: Mappers.AppResource
- },
- 202: {
- bodyMapper: Mappers.AppResource
+ bodyMapper: Mappers.CustomDomainValidateResult
},
default: {
bodyMapper: Mappers.CloudError
}
},
+ requestBody: Parameters.validatePayload,
+ queryParameters: [Parameters.apiVersion],
+ urlParameters: [
+ Parameters.$host,
+ Parameters.subscriptionId,
+ Parameters.resourceGroupName,
+ Parameters.serviceName,
+ Parameters.appName
+ ],
+ headerParameters: [Parameters.accept, Parameters.contentType],
+ mediaType: "json",
serializer
};
-
-const listNextOperationSpec: msRest.OperationSpec = {
- httpMethod: "GET",
- baseUrl: "https://management.azure.com",
+const listNextOperationSpec: coreClient.OperationSpec = {
path: "{nextLink}",
- urlParameters: [
- Parameters.nextPageLink
- ],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
+ httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.AppResourceCollection
@@ -557,5 +687,14 @@ const listNextOperationSpec: msRest.OperationSpec = {
bodyMapper: Mappers.CloudError
}
},
+ queryParameters: [Parameters.apiVersion],
+ urlParameters: [
+ Parameters.$host,
+ Parameters.subscriptionId,
+ Parameters.resourceGroupName,
+ Parameters.serviceName,
+ Parameters.nextLink
+ ],
+ headerParameters: [Parameters.accept],
serializer
};
diff --git a/sdk/appplatform/arm-appplatform/src/operations/bindings.ts b/sdk/appplatform/arm-appplatform/src/operations/bindings.ts
index 770937660c12..b64f0ae4e4a8 100644
--- a/sdk/appplatform/arm-appplatform/src/operations/bindings.ts
+++ b/sdk/appplatform/arm-appplatform/src/operations/bindings.ts
@@ -3,171 +3,415 @@
* 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/bindingsMappers";
+import { PagedAsyncIterableIterator } from "@azure/core-paging";
+import { Bindings } from "../operationsInterfaces";
+import * as coreClient from "@azure/core-client";
+import * as Mappers from "../models/mappers";
import * as Parameters from "../models/parameters";
import { AppPlatformManagementClientContext } from "../appPlatformManagementClientContext";
+import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro";
+import { LroImpl } from "../lroImpl";
+import {
+ BindingResource,
+ BindingsListNextOptionalParams,
+ BindingsListOptionalParams,
+ BindingsGetOptionalParams,
+ BindingsGetResponse,
+ BindingsCreateOrUpdateOptionalParams,
+ BindingsCreateOrUpdateResponse,
+ BindingsDeleteOptionalParams,
+ BindingsUpdateOptionalParams,
+ BindingsUpdateResponse,
+ BindingsListResponse,
+ BindingsListNextResponse
+} from "../models";
-/** Class representing a Bindings. */
-export class Bindings {
+///
+/** Class containing Bindings operations. */
+export class BindingsImpl implements Bindings {
private readonly client: AppPlatformManagementClientContext;
/**
- * Create a Bindings.
- * @param {AppPlatformManagementClientContext} client Reference to the service client.
+ * Initialize a new instance of the class Bindings class.
+ * @param client Reference to the service client
*/
constructor(client: AppPlatformManagementClientContext) {
this.client = client;
}
/**
- * Get a Binding and its properties.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Handles requests to list all resources in an App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param bindingName The name of the Binding resource.
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: msRest.RequestOptionsBase): Promise;
+ public list(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: BindingsListOptionalParams
+ ): PagedAsyncIterableIterator {
+ const iter = this.listPagingAll(
+ resourceGroupName,
+ serviceName,
+ appName,
+ options
+ );
+ return {
+ next() {
+ return iter.next();
+ },
+ [Symbol.asyncIterator]() {
+ return this;
+ },
+ byPage: () => {
+ return this.listPagingPage(
+ resourceGroupName,
+ serviceName,
+ appName,
+ options
+ );
+ }
+ };
+ }
+
+ private async *listPagingPage(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: BindingsListOptionalParams
+ ): AsyncIterableIterator {
+ let result = await this._list(
+ resourceGroupName,
+ serviceName,
+ appName,
+ options
+ );
+ yield result.value || [];
+ let continuationToken = result.nextLink;
+ while (continuationToken) {
+ result = await this._listNext(
+ resourceGroupName,
+ serviceName,
+ appName,
+ continuationToken,
+ options
+ );
+ continuationToken = result.nextLink;
+ yield result.value || [];
+ }
+ }
+
+ private async *listPagingAll(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: BindingsListOptionalParams
+ ): AsyncIterableIterator {
+ for await (const page of this.listPagingPage(
+ resourceGroupName,
+ serviceName,
+ appName,
+ options
+ )) {
+ yield* page;
+ }
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Get a Binding and its properties.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
- * @param callback The callback
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, callback: msRest.ServiceCallback): void;
+ get(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ options?: BindingsGetOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, appName, bindingName, options },
+ getOperationSpec
+ );
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Create a new Binding or update an exiting Binding.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
- * @param options The optional parameters
- * @param callback The callback
+ * @param bindingResource Parameters for the create or update operation
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
- get(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
- return this.client.sendOperationRequest(
+ async beginCreateOrUpdate(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ bindingResource: BindingResource,
+ options?: BindingsCreateOrUpdateOptionalParams
+ ): Promise<
+ PollerLike<
+ PollOperationState,
+ BindingsCreateOrUpdateResponse
+ >
+ > {
+ 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,
serviceName,
appName,
bindingName,
+ bindingResource,
options
},
- getOperationSpec,
- callback) as Promise;
+ createOrUpdateOperationSpec
+ );
+ return new LroEngine(lro, {
+ resumeFrom: options?.resumeFrom,
+ intervalInMs: options?.updateIntervalInMs,
+ lroResourceLocationConfig: "azure-async-operation"
+ });
}
/**
* Create a new Binding or update an exiting Binding.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
* @param bindingResource Parameters for the create or update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- createOrUpdate(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: Models.BindingResource, options?: msRest.RequestOptionsBase): Promise {
- return this.beginCreateOrUpdate(resourceGroupName,serviceName,appName,bindingName,bindingResource,options)
- .then(lroPoller => lroPoller.pollUntilFinished()) as Promise;
+ async beginCreateOrUpdateAndWait(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ bindingResource: BindingResource,
+ options?: BindingsCreateOrUpdateOptionalParams
+ ): Promise {
+ const poller = await this.beginCreateOrUpdate(
+ resourceGroupName,
+ serviceName,
+ appName,
+ bindingName,
+ bindingResource,
+ options
+ );
+ return poller.pollUntilDone();
}
/**
* Operation to delete a Binding.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- deleteMethod(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: msRest.RequestOptionsBase): Promise {
- return this.beginDeleteMethod(resourceGroupName,serviceName,appName,bindingName,options)
- .then(lroPoller => lroPoller.pollUntilFinished());
+ async beginDelete(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ options?: BindingsDeleteOptionalParams
+ ): 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, serviceName, appName, bindingName, options },
+ deleteOperationSpec
+ );
+ return new LroEngine(lro, {
+ resumeFrom: options?.resumeFrom,
+ intervalInMs: options?.updateIntervalInMs,
+ lroResourceLocationConfig: "azure-async-operation"
+ });
}
/**
- * Operation to update an exiting Binding.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to delete a Binding.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
- * @param bindingResource Parameters for the update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- update(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: Models.BindingResource, options?: msRest.RequestOptionsBase): Promise {
- return this.beginUpdate(resourceGroupName,serviceName,appName,bindingName,bindingResource,options)
- .then(lroPoller => lroPoller.pollUntilFinished()) as Promise;
+ async beginDeleteAndWait(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ options?: BindingsDeleteOptionalParams
+ ): Promise {
+ const poller = await this.beginDelete(
+ resourceGroupName,
+ serviceName,
+ appName,
+ bindingName,
+ options
+ );
+ return poller.pollUntilDone();
}
/**
- * Handles requests to list all resources in an App.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param [options] The optional parameters
- * @returns Promise
- */
- list(resourceGroupName: string, serviceName: string, appName: string, options?: msRest.RequestOptionsBase): Promise;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param callback The callback
- */
- list(resourceGroupName: string, serviceName: string, appName: string, callback: msRest.ServiceCallback): void;
- /**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
- * @param serviceName The name of the Service resource.
- * @param appName The name of the App resource.
- * @param options The optional parameters
- * @param callback The callback
- */
- list(resourceGroupName: string, serviceName: string, appName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
- list(resourceGroupName: string, serviceName: string, appName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
- return this.client.sendOperationRequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- options
- },
- listOperationSpec,
- callback) as Promise;
- }
-
- /**
- * Create a new Binding or update an exiting Binding.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to update an exiting Binding.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
- * @param bindingResource Parameters for the create or update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param bindingResource Parameters for the update operation
+ * @param options The options parameters.
*/
- beginCreateOrUpdate(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: Models.BindingResource, options?: msRest.RequestOptionsBase): Promise {
- return this.client.sendLRORequest(
+ async beginUpdate(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ bindingResource: BindingResource,
+ options?: BindingsUpdateOptionalParams
+ ): Promise<
+ PollerLike<
+ PollOperationState,
+ BindingsUpdateResponse
+ >
+ > {
+ 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,
serviceName,
@@ -176,105 +420,93 @@ export class Bindings {
bindingResource,
options
},
- beginCreateOrUpdateOperationSpec,
- options);
+ updateOperationSpec
+ );
+ return new LroEngine(lro, {
+ resumeFrom: options?.resumeFrom,
+ intervalInMs: options?.updateIntervalInMs,
+ lroResourceLocationConfig: "azure-async-operation"
+ });
}
/**
- * Operation to delete a Binding.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Operation to update an exiting Binding.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
* @param bindingName The name of the Binding resource.
- * @param [options] The optional parameters
- * @returns Promise
+ * @param bindingResource Parameters for the update operation
+ * @param options The options parameters.
*/
- beginDeleteMethod(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, options?: msRest.RequestOptionsBase): Promise {
- return this.client.sendLRORequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- bindingName,
- options
- },
- beginDeleteMethodOperationSpec,
- options);
+ async beginUpdateAndWait(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ bindingName: string,
+ bindingResource: BindingResource,
+ options?: BindingsUpdateOptionalParams
+ ): Promise {
+ const poller = await this.beginUpdate(
+ resourceGroupName,
+ serviceName,
+ appName,
+ bindingName,
+ bindingResource,
+ options
+ );
+ return poller.pollUntilDone();
}
/**
- * Operation to update an exiting Binding.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Handles requests to list all resources in an App.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param appName The name of the App resource.
- * @param bindingName The name of the Binding resource.
- * @param bindingResource Parameters for the update operation
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- beginUpdate(resourceGroupName: string, serviceName: string, appName: string, bindingName: string, bindingResource: Models.BindingResource, options?: msRest.RequestOptionsBase): Promise {
- return this.client.sendLRORequest(
- {
- resourceGroupName,
- serviceName,
- appName,
- bindingName,
- bindingResource,
- options
- },
- beginUpdateOperationSpec,
- options);
+ private _list(
+ resourceGroupName: string,
+ serviceName: string,
+ appName: string,
+ options?: BindingsListOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, appName, options },
+ listOperationSpec
+ );
}
/**
- * Handles requests to list all resources in an App.
- * @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 resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
+ * @param serviceName The name of the Service resource.
+ * @param appName The name of the App resource.
+ * @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,
+ serviceName: string,
+ appName: string,
+ nextLink: string,
+ options?: BindingsListNextOptionalParams
+ ): Promise {
return this.client.sendOperationRequest(
- {
- nextPageLink,
- options
- },
- listNextOperationSpec,
- callback) as Promise;
+ { resourceGroupName, serviceName, appName, nextLink, options },
+ listNextOperationSpec
+ );
}
}
-
// Operation Specifications
-const serializer = new msRest.Serializer(Mappers);
-const getOperationSpec: msRest.OperationSpec = {
+const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
+
+const getOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
httpMethod: "GET",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
- urlParameters: [
- Parameters.subscriptionId,
- Parameters.resourceGroupName,
- Parameters.serviceName,
- Parameters.appName,
- Parameters.bindingName
- ],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
responses: {
200: {
bodyMapper: Mappers.BindingResource
@@ -283,58 +515,22 @@ const getOperationSpec: msRest.OperationSpec = {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const listOperationSpec: msRest.OperationSpec = {
- httpMethod: "GET",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings",
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
- Parameters.appName
- ],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
+ Parameters.appName,
+ Parameters.bindingName
],
- responses: {
- 200: {
- bodyMapper: Mappers.BindingResourceCollection
- },
- default: {
- bodyMapper: Mappers.CloudError
- }
- },
+ headerParameters: [Parameters.accept],
serializer
};
-
-const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = {
+const createOrUpdateOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
httpMethod: "PUT",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
- urlParameters: [
- Parameters.subscriptionId,
- Parameters.resourceGroupName,
- Parameters.serviceName,
- Parameters.appName,
- Parameters.bindingName
- ],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
- requestBody: {
- parameterPath: "bindingResource",
- mapper: {
- ...Mappers.BindingResource,
- required: true
- }
- },
responses: {
200: {
bodyMapper: Mappers.BindingResource
@@ -345,90 +541,113 @@ const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = {
202: {
bodyMapper: Mappers.BindingResource
},
+ 204: {
+ bodyMapper: Mappers.BindingResource
+ },
default: {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const beginDeleteMethodOperationSpec: msRest.OperationSpec = {
- httpMethod: "DELETE",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
+ requestBody: Parameters.bindingResource,
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName,
Parameters.bindingName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
+ headerParameters: [Parameters.accept, Parameters.contentType],
+ mediaType: "json",
+ serializer
+};
+const deleteOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
+ httpMethod: "DELETE",
responses: {
200: {},
+ 201: {},
202: {},
204: {},
default: {
bodyMapper: Mappers.CloudError
}
},
- serializer
-};
-
-const beginUpdateOperationSpec: msRest.OperationSpec = {
- httpMethod: "PATCH",
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
+ Parameters.$host,
Parameters.subscriptionId,
Parameters.resourceGroupName,
Parameters.serviceName,
Parameters.appName,
Parameters.bindingName
],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
- ],
- requestBody: {
- parameterPath: "bindingResource",
- mapper: {
- ...Mappers.BindingResource,
- required: true
- }
- },
+ headerParameters: [Parameters.accept],
+ serializer
+};
+const updateOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings/{bindingName}",
+ httpMethod: "PATCH",
responses: {
200: {
bodyMapper: Mappers.BindingResource
},
+ 201: {
+ bodyMapper: Mappers.BindingResource
+ },
202: {
bodyMapper: Mappers.BindingResource
},
+ 204: {
+ bodyMapper: Mappers.BindingResource
+ },
default: {
bodyMapper: Mappers.CloudError
}
},
+ requestBody: Parameters.bindingResource,
+ queryParameters: [Parameters.apiVersion],
+ urlParameters: [
+ Parameters.$host,
+ Parameters.subscriptionId,
+ Parameters.resourceGroupName,
+ Parameters.serviceName,
+ Parameters.appName,
+ Parameters.bindingName
+ ],
+ headerParameters: [Parameters.accept, Parameters.contentType],
+ mediaType: "json",
serializer
};
-
-const listNextOperationSpec: msRest.OperationSpec = {
+const listOperationSpec: coreClient.OperationSpec = {
+ path:
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/apps/{appName}/bindings",
httpMethod: "GET",
- baseUrl: "https://management.azure.com",
- path: "{nextLink}",
+ responses: {
+ 200: {
+ bodyMapper: Mappers.BindingResourceCollection
+ },
+ default: {
+ bodyMapper: Mappers.CloudError
+ }
+ },
+ queryParameters: [Parameters.apiVersion],
urlParameters: [
- Parameters.nextPageLink
- ],
- queryParameters: [
- Parameters.apiVersion
- ],
- headerParameters: [
- Parameters.acceptLanguage
+ Parameters.$host,
+ Parameters.subscriptionId,
+ Parameters.resourceGroupName,
+ Parameters.serviceName,
+ Parameters.appName
],
+ headerParameters: [Parameters.accept],
+ serializer
+};
+const listNextOperationSpec: coreClient.OperationSpec = {
+ path: "{nextLink}",
+ httpMethod: "GET",
responses: {
200: {
bodyMapper: Mappers.BindingResourceCollection
@@ -437,5 +656,15 @@ const listNextOperationSpec: msRest.OperationSpec = {
bodyMapper: Mappers.CloudError
}
},
+ queryParameters: [Parameters.apiVersion],
+ urlParameters: [
+ Parameters.$host,
+ Parameters.subscriptionId,
+ Parameters.resourceGroupName,
+ Parameters.serviceName,
+ Parameters.nextLink,
+ Parameters.appName
+ ],
+ headerParameters: [Parameters.accept],
serializer
};
diff --git a/sdk/appplatform/arm-appplatform/src/operations/certificates.ts b/sdk/appplatform/arm-appplatform/src/operations/certificates.ts
index 98faa3c58632..c844ada45371 100644
--- a/sdk/appplatform/arm-appplatform/src/operations/certificates.ts
+++ b/sdk/appplatform/arm-appplatform/src/operations/certificates.ts
@@ -3,222 +3,360 @@
* 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/certificatesMappers";
+import { PagedAsyncIterableIterator } from "@azure/core-paging";
+import { Certificates } from "../operationsInterfaces";
+import * as coreClient from "@azure/core-client";
+import * as Mappers from "../models/mappers";
import * as Parameters from "../models/parameters";
import { AppPlatformManagementClientContext } from "../appPlatformManagementClientContext";
+import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro";
+import { LroImpl } from "../lroImpl";
+import {
+ CertificateResource,
+ CertificatesListNextOptionalParams,
+ CertificatesListOptionalParams,
+ CertificatesGetOptionalParams,
+ CertificatesGetResponse,
+ CertificatesCreateOrUpdateOptionalParams,
+ CertificatesCreateOrUpdateResponse,
+ CertificatesDeleteOptionalParams,
+ CertificatesListResponse,
+ CertificatesListNextResponse
+} from "../models";
-/** Class representing a Certificates. */
-export class Certificates {
+///
+/** Class containing Certificates operations. */
+export class CertificatesImpl implements Certificates {
private readonly client: AppPlatformManagementClientContext;
/**
- * Create a Certificates.
- * @param {AppPlatformManagementClientContext} client Reference to the service client.
+ * Initialize a new instance of the class Certificates class.
+ * @param client Reference to the service client
*/
constructor(client: AppPlatformManagementClientContext) {
this.client = client;
}
/**
- * Get the certificate resource.
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * List all the certificates of one user.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
- * @param certificateName The name of the certificate resource.
- * @param [options] The optional parameters
- * @returns Promise
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, certificateName: string, options?: msRest.RequestOptionsBase): Promise;
+ public list(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: CertificatesListOptionalParams
+ ): PagedAsyncIterableIterator {
+ const iter = this.listPagingAll(resourceGroupName, serviceName, options);
+ return {
+ next() {
+ return iter.next();
+ },
+ [Symbol.asyncIterator]() {
+ return this;
+ },
+ byPage: () => {
+ return this.listPagingPage(resourceGroupName, serviceName, options);
+ }
+ };
+ }
+
+ private async *listPagingPage(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: CertificatesListOptionalParams
+ ): AsyncIterableIterator {
+ let result = await this._list(resourceGroupName, serviceName, options);
+ yield result.value || [];
+ let continuationToken = result.nextLink;
+ while (continuationToken) {
+ result = await this._listNext(
+ resourceGroupName,
+ serviceName,
+ continuationToken,
+ options
+ );
+ continuationToken = result.nextLink;
+ yield result.value || [];
+ }
+ }
+
+ private async *listPagingAll(
+ resourceGroupName: string,
+ serviceName: string,
+ options?: CertificatesListOptionalParams
+ ): AsyncIterableIterator {
+ for await (const page of this.listPagingPage(
+ resourceGroupName,
+ serviceName,
+ options
+ )) {
+ yield* page;
+ }
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Get the certificate resource.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param certificateName The name of the certificate resource.
- * @param callback The callback
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, certificateName: string, callback: msRest.ServiceCallback): void;
+ get(
+ resourceGroupName: string,
+ serviceName: string,
+ certificateName: string,
+ options?: CertificatesGetOptionalParams
+ ): Promise {
+ return this.client.sendOperationRequest(
+ { resourceGroupName, serviceName, certificateName, options },
+ getOperationSpec
+ );
+ }
+
/**
- * @param resourceGroupName The name of the resource group that contains the resource. You can
- * obtain this value from the Azure Resource Manager API or the portal.
+ * Create or update certificate resource.
+ * @param resourceGroupName The name of the resource group that contains the resource. You can obtain
+ * this value from the Azure Resource Manager API or the portal.
* @param serviceName The name of the Service resource.
* @param certificateName The name of the certificate resource.
- * @param options The optional parameters
- * @param callback The callback
+ * @param certificateResource Parameters for the create or update operation
+ * @param options The options parameters.
*/
- get(resourceGroupName: string, serviceName: string, certificateName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
- get(resourceGroupName: string, serviceName: string, certificateName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback