From 73315fec9560fa487d182fb05ab78db84937a13f Mon Sep 17 00:00:00 2001 From: zhangyan133 <77086185+zhangyan133@users.noreply.github.com> Date: Wed, 24 Feb 2021 14:12:43 +0800 Subject: [PATCH] T1 appplatform 2021 02 24 (#16896) * CodeGen from PR 12282 in Azure/azure-rest-api-specs add app attribute enable end to end tls (#12282) * add new app attribute enableEndToEndTLS in preview versions * revert changes on old version 2019-05-01-preview * wording * test,version,CHANGELOG * fix test Co-authored-by: SDKAuto Co-authored-by: Yan Zhang (WICRESOFT NORTH AMERICA LTD) Co-authored-by: 00Kai0 --- .../azure-mgmt-appplatform/CHANGELOG.md | 6 + .../_app_platform_management_client.py | 53 + .../v2020_11_01_preview/models/_models.py | 4 + .../v2020_11_01_preview/models/_models_py3.py | 6 +- .../azure/mgmt/appplatform/version.py | 2 +- ...m_2019_05_01_preview.test_appplatform.yaml | 4659 ++--------------- ...pplatform_2020_07_01.test_appplatform.yaml | 3392 ++---------- .../test_cli_mgmt_appplatform_2020_07_01.py | 1 + 8 files changed, 859 insertions(+), 7264 deletions(-) diff --git a/sdk/appplatform/azure-mgmt-appplatform/CHANGELOG.md b/sdk/appplatform/azure-mgmt-appplatform/CHANGELOG.md index 8f3ecb1cc01a..1eb53f0345b0 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/CHANGELOG.md +++ b/sdk/appplatform/azure-mgmt-appplatform/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 1.2.0 (2021-02-24) + +**Features** + + - Model AppResourceProperties has a new parameter enable_end_to_end_tls + ## 1.1.0 (2021-01-04) **Features** diff --git a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py index 565924158358..744ebc6929af 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py +++ b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py @@ -75,6 +75,7 @@ def models(cls, api_version=DEFAULT_API_VERSION): * 2019-05-01-preview: :mod:`v2019_05_01_preview.models` * 2020-07-01: :mod:`v2020_07_01.models` + * 2020-11-01-preview: :mod:`v2020_11_01_preview.models` """ if api_version == '2019-05-01-preview': from .v2019_05_01_preview import models @@ -82,6 +83,9 @@ def models(cls, api_version=DEFAULT_API_VERSION): elif api_version == '2020-07-01': from .v2020_07_01 import models return models + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview import models + return models raise NotImplementedError("APIVersion {} is not available".format(api_version)) @property @@ -90,12 +94,15 @@ def apps(self): * 2019-05-01-preview: :class:`AppsOperations` * 2020-07-01: :class:`AppsOperations` + * 2020-11-01-preview: :class:`AppsOperations` """ api_version = self._get_api_version('apps') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import AppsOperations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import AppsOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import AppsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -106,12 +113,15 @@ def bindings(self): * 2019-05-01-preview: :class:`BindingsOperations` * 2020-07-01: :class:`BindingsOperations` + * 2020-11-01-preview: :class:`BindingsOperations` """ api_version = self._get_api_version('bindings') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import BindingsOperations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import BindingsOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import BindingsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -122,12 +132,15 @@ def certificates(self): * 2019-05-01-preview: :class:`CertificatesOperations` * 2020-07-01: :class:`CertificatesOperations` + * 2020-11-01-preview: :class:`CertificatesOperations` """ api_version = self._get_api_version('certificates') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import CertificatesOperations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import CertificatesOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import CertificatesOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -137,10 +150,13 @@ def config_servers(self): """Instance depends on the API version: * 2020-07-01: :class:`ConfigServersOperations` + * 2020-11-01-preview: :class:`ConfigServersOperations` """ api_version = self._get_api_version('config_servers') if api_version == '2020-07-01': from .v2020_07_01.operations import ConfigServersOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import ConfigServersOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -151,12 +167,15 @@ def custom_domains(self): * 2019-05-01-preview: :class:`CustomDomainsOperations` * 2020-07-01: :class:`CustomDomainsOperations` + * 2020-11-01-preview: :class:`CustomDomainsOperations` """ api_version = self._get_api_version('custom_domains') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import CustomDomainsOperations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import CustomDomainsOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import CustomDomainsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -167,12 +186,15 @@ def deployments(self): * 2019-05-01-preview: :class:`DeploymentsOperations` * 2020-07-01: :class:`DeploymentsOperations` + * 2020-11-01-preview: :class:`DeploymentsOperations` """ api_version = self._get_api_version('deployments') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import DeploymentsOperations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import DeploymentsOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import DeploymentsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -182,10 +204,13 @@ def monitoring_settings(self): """Instance depends on the API version: * 2020-07-01: :class:`MonitoringSettingsOperations` + * 2020-11-01-preview: :class:`MonitoringSettingsOperations` """ api_version = self._get_api_version('monitoring_settings') if api_version == '2020-07-01': from .v2020_07_01.operations import MonitoringSettingsOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import MonitoringSettingsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -196,12 +221,34 @@ def operations(self): * 2019-05-01-preview: :class:`Operations` * 2020-07-01: :class:`Operations` + * 2020-11-01-preview: :class:`Operations` """ api_version = self._get_api_version('operations') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import Operations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import Operations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import Operations as OperationClass + else: + raise NotImplementedError("APIVersion {} is not available".format(api_version)) + return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def runtime_versions(self): + """Instance depends on the API version: + + * 2019-05-01-preview: :class:`RuntimeVersionsOperations` + * 2020-07-01: :class:`RuntimeVersionsOperations` + * 2020-11-01-preview: :class:`RuntimeVersionsOperations` + """ + api_version = self._get_api_version('runtime_versions') + if api_version == '2019-05-01-preview': + from .v2019_05_01_preview.operations import RuntimeVersionsOperations as OperationClass + elif api_version == '2020-07-01': + from .v2020_07_01.operations import RuntimeVersionsOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import RuntimeVersionsOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -212,12 +259,15 @@ def services(self): * 2019-05-01-preview: :class:`ServicesOperations` * 2020-07-01: :class:`ServicesOperations` + * 2020-11-01-preview: :class:`ServicesOperations` """ api_version = self._get_api_version('services') if api_version == '2019-05-01-preview': from .v2019_05_01_preview.operations import ServicesOperations as OperationClass elif api_version == '2020-07-01': from .v2020_07_01.operations import ServicesOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import ServicesOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) @@ -240,10 +290,13 @@ def skus(self): """Instance depends on the API version: * 2020-07-01: :class:`SkusOperations` + * 2020-11-01-preview: :class:`SkusOperations` """ api_version = self._get_api_version('skus') if api_version == '2020-07-01': from .v2020_07_01.operations import SkusOperations as OperationClass + elif api_version == '2020-11-01-preview': + from .v2020_11_01_preview.operations import SkusOperations as OperationClass else: raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) diff --git a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models.py b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models.py index d0e8bbc4d86d..5e4cb8128dcc 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models.py +++ b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models.py @@ -165,6 +165,8 @@ class AppResourceProperties(Model): :type fqdn: str :param https_only: Indicate if only https is allowed. :type https_only: bool + :param enable_end_to_end_tls: Indicate if end to end TLS is enabled. + :type enable_end_to_end_tls: bool :ivar created_time: Date time when the resource is created :vartype created_time: datetime :param temporary_disk: Temporary disk settings @@ -188,6 +190,7 @@ class AppResourceProperties(Model): 'active_deployment_name': {'key': 'activeDeploymentName', 'type': 'str'}, 'fqdn': {'key': 'fqdn', 'type': 'str'}, 'https_only': {'key': 'httpsOnly', 'type': 'bool'}, + 'enable_end_to_end_tls': {'key': 'enableEndToEndTLS', 'type': 'bool'}, 'created_time': {'key': 'createdTime', 'type': 'iso-8601'}, 'temporary_disk': {'key': 'temporaryDisk', 'type': 'TemporaryDisk'}, 'persistent_disk': {'key': 'persistentDisk', 'type': 'PersistentDisk'}, @@ -201,6 +204,7 @@ def __init__(self, **kwargs): self.active_deployment_name = kwargs.get('active_deployment_name', None) self.fqdn = kwargs.get('fqdn', None) self.https_only = kwargs.get('https_only', None) + self.enable_end_to_end_tls = kwargs.get('enable_end_to_end_tls', None) self.created_time = None self.temporary_disk = kwargs.get('temporary_disk', None) self.persistent_disk = kwargs.get('persistent_disk', None) diff --git a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models_py3.py b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models_py3.py index ca36c19bc5e4..7cd772766b30 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models_py3.py +++ b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2020_11_01_preview/models/_models_py3.py @@ -165,6 +165,8 @@ class AppResourceProperties(Model): :type fqdn: str :param https_only: Indicate if only https is allowed. :type https_only: bool + :param enable_end_to_end_tls: Indicate if end to end TLS is enabled. + :type enable_end_to_end_tls: bool :ivar created_time: Date time when the resource is created :vartype created_time: datetime :param temporary_disk: Temporary disk settings @@ -188,12 +190,13 @@ class AppResourceProperties(Model): 'active_deployment_name': {'key': 'activeDeploymentName', 'type': 'str'}, 'fqdn': {'key': 'fqdn', 'type': 'str'}, 'https_only': {'key': 'httpsOnly', 'type': 'bool'}, + 'enable_end_to_end_tls': {'key': 'enableEndToEndTLS', 'type': 'bool'}, 'created_time': {'key': 'createdTime', 'type': 'iso-8601'}, 'temporary_disk': {'key': 'temporaryDisk', 'type': 'TemporaryDisk'}, 'persistent_disk': {'key': 'persistentDisk', 'type': 'PersistentDisk'}, } - def __init__(self, *, public: bool=None, active_deployment_name: str=None, fqdn: str=None, https_only: bool=None, temporary_disk=None, persistent_disk=None, **kwargs) -> None: + def __init__(self, *, public: bool=None, active_deployment_name: str=None, fqdn: str=None, https_only: bool=None, enable_end_to_end_tls: bool=None, temporary_disk=None, persistent_disk=None, **kwargs) -> None: super(AppResourceProperties, self).__init__(**kwargs) self.public = public self.url = None @@ -201,6 +204,7 @@ def __init__(self, *, public: bool=None, active_deployment_name: str=None, fqdn: self.active_deployment_name = active_deployment_name self.fqdn = fqdn self.https_only = https_only + self.enable_end_to_end_tls = enable_end_to_end_tls self.created_time = None self.temporary_disk = temporary_disk self.persistent_disk = persistent_disk diff --git a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/version.py b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/version.py index 24b9de3384da..9c644827672b 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/version.py +++ b/sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "1.1.0" +VERSION = "1.2.0" diff --git a/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2019_05_01_preview.test_appplatform.yaml b/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2019_05_01_preview.test_appplatform.yaml index 36f356bb1852..a14aa87be6a5 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2019_05_01_preview.test_appplatform.yaml +++ b/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2019_05_01_preview.test_appplatform.yaml @@ -16,18 +16,18 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1?api-version=2019-05-01-preview response: body: - string: '{"properties":{"provisioningState":"Creating","configServerProperties":{"state":"Succeeded","configServer":{"gitProperty":{"uri":"https://github.com/Azure-Samples/piggymetrics-config.git","label":"master","searchPaths":["/"]}}},"trace":{"state":"Succeeded","enabled":true,"appInsightInstrumentationKey":"00000000-0000-0000-0000-000000000000"},"version":3,"serviceId":"fac2a3e12fc84062a60d2b30747f99ff"},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1","name":"myservice1"}' + string: '{"properties":{"provisioningState":"Creating","configServerProperties":{"state":"Succeeded","configServer":{"gitProperty":{"uri":"https://github.com/Azure-Samples/piggymetrics-config.git","label":"master","searchPaths":["/"]}}},"trace":{"state":"Succeeded","enabled":true,"appInsightInstrumentationKey":"00000000-0000-0000-0000-000000000000"},"version":3,"serviceId":"85785f789b8741eeaff399d1a6119f5e"},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1","name":"myservice1"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview cache-control: - no-cache content-length: @@ -35,11 +35,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:49:15 GMT + - Wed, 24 Feb 2021 02:41:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationResults/16ada508-1f4a-47f7-813c-a468a7d6eade/Spring/myservice1?api-version=2019-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationResults/872c12b0-87f1-4a30-9d95-5efbf76b602f/Spring/myservice1?api-version=2019-05-01-preview pragma: - no-cache server: @@ -51,7 +51,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 201 message: Created @@ -65,13 +65,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:49:46 GMT + - Wed, 24 Feb 2021 02:41:40 GMT expires: - '-1' pragma: @@ -92,7 +92,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -106,13 +106,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -121,7 +121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:49:56 GMT + - Wed, 24 Feb 2021 02:41:51 GMT expires: - '-1' pragma: @@ -133,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -147,13 +147,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -162,7 +162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:50:07 GMT + - Wed, 24 Feb 2021 02:42:01 GMT expires: - '-1' pragma: @@ -174,7 +174,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -188,13 +188,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:50:17 GMT + - Wed, 24 Feb 2021 02:42:11 GMT expires: - '-1' pragma: @@ -215,7 +215,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -229,13 +229,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:50:28 GMT + - Wed, 24 Feb 2021 02:42:21 GMT expires: - '-1' pragma: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -270,13 +270,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -285,7 +285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:50:38 GMT + - Wed, 24 Feb 2021 02:42:32 GMT expires: - '-1' pragma: @@ -297,7 +297,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -311,13 +311,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -326,7 +326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:50:49 GMT + - Wed, 24 Feb 2021 02:42:42 GMT expires: - '-1' pragma: @@ -338,7 +338,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -352,13 +352,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -367,7 +367,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:50:59 GMT + - Wed, 24 Feb 2021 02:42:52 GMT expires: - '-1' pragma: @@ -379,7 +379,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -393,13 +393,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -408,7 +408,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:51:09 GMT + - Wed, 24 Feb 2021 02:43:02 GMT expires: - '-1' pragma: @@ -420,7 +420,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -434,13 +434,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -449,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:51:19 GMT + - Wed, 24 Feb 2021 02:43:13 GMT expires: - '-1' pragma: @@ -461,7 +461,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -475,13 +475,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -490,7 +490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:51:29 GMT + - Wed, 24 Feb 2021 02:43:23 GMT expires: - '-1' pragma: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -516,13 +516,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -531,7 +531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:51:40 GMT + - Wed, 24 Feb 2021 02:43:33 GMT expires: - '-1' pragma: @@ -543,7 +543,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -557,13 +557,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -572,7 +572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:51:50 GMT + - Wed, 24 Feb 2021 02:43:44 GMT expires: - '-1' pragma: @@ -584,7 +584,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -598,13 +598,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Running","startTime":"2021-01-04T08:49:12.6964606Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' headers: cache-control: - no-cache @@ -613,7 +613,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:00 GMT + - Wed, 24 Feb 2021 02:43:55 GMT expires: - '-1' pragma: @@ -625,7 +625,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -639,13 +639,177 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/16ada508-1f4a-47f7-813c-a468a7d6eade","name":"16ada508-1f4a-47f7-813c-a468a7d6eade","status":"Succeeded","startTime":"2021-01-04T08:49:12.6964606Z","endTime":"2021-01-04T08:52:11.7678198Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' + headers: + cache-control: + - no-cache + content-length: + - '378' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:44:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' + headers: + cache-control: + - no-cache + content-length: + - '378' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:44:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' + headers: + cache-control: + - no-cache + content-length: + - '378' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:44:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Running","startTime":"2021-02-24T02:41:05.8020669Z"}' + headers: + cache-control: + - no-cache + content-length: + - '378' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:44:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f?api-version=2019-05-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/872c12b0-87f1-4a30-9d95-5efbf76b602f","name":"872c12b0-87f1-4a30-9d95-5efbf76b602f","status":"Succeeded","startTime":"2021-02-24T02:41:05.8020669Z","endTime":"2021-02-24T02:44:43.7959927Z"}' headers: cache-control: - no-cache @@ -654,7 +818,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:11 GMT + - Wed, 24 Feb 2021 02:44:47 GMT expires: - '-1' pragma: @@ -670,7 +834,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -684,13 +848,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1?api-version=2019-05-01-preview response: body: - string: '{"properties":{"provisioningState":"Succeeded","configServerProperties":{"state":"Succeeded","configServer":{"gitProperty":{"uri":"https://github.com/Azure-Samples/piggymetrics-config.git","label":"master","searchPaths":["/"]}}},"trace":{"state":"Succeeded","enabled":true,"appInsightInstrumentationKey":"00000000-0000-0000-0000-000000000000"},"version":3,"serviceId":"fac2a3e12fc84062a60d2b30747f99ff","networkProfile":{"outboundIPs":{"publicIPs":["20.185.96.169","20.185.96.180"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1","name":"myservice1"}' + string: '{"properties":{"provisioningState":"Succeeded","configServerProperties":{"state":"Succeeded","configServer":{"gitProperty":{"uri":"https://github.com/Azure-Samples/piggymetrics-config.git","label":"master","searchPaths":["/"]}}},"trace":{"state":"Succeeded","enabled":true,"appInsightInstrumentationKey":"00000000-0000-0000-0000-000000000000"},"version":3,"serviceId":"85785f789b8741eeaff399d1a6119f5e","networkProfile":{"outboundIPs":{"publicIPs":["40.88.234.161","40.88.234.173"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1","name":"myservice1"}' headers: cache-control: - no-cache @@ -699,7 +863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:12 GMT + - Wed, 24 Feb 2021 02:44:47 GMT expires: - '-1' pragma: @@ -717,7 +881,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -735,15 +899,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp?api-version=2019-05-01-preview response: body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice1.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-01-04T08:52:14.701Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp","name":"myapp"}' + string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice1.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-02-24T02:44:50.118Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp","name":"myapp"}' headers: cache-control: - no-cache @@ -752,7 +916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:14 GMT + - Wed, 24 Feb 2021 02:44:49 GMT expires: - '-1' pragma: @@ -770,7 +934,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -784,15 +948,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp?api-version=2019-05-01-preview response: body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice1.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-01-04T08:52:14.701Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp","name":"myapp"}' + string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice1.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-02-24T02:44:50.118Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp","name":"myapp"}' headers: cache-control: - no-cache @@ -801,7 +965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:15 GMT + - Wed, 24 Feb 2021 02:44:49 GMT expires: - '-1' pragma: @@ -819,7 +983,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -833,15 +997,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1?api-version=2019-05-01-preview response: body: - string: '{"properties":{"provisioningState":"Succeeded","configServerProperties":{"state":"Succeeded","configServer":{"gitProperty":{"uri":"https://github.com/Azure-Samples/piggymetrics-config.git","label":"master","searchPaths":["/"]}}},"trace":{"state":"Succeeded","enabled":true,"appInsightInstrumentationKey":"00000000-0000-0000-0000-000000000000"},"version":3,"serviceId":"fac2a3e12fc84062a60d2b30747f99ff","networkProfile":{"outboundIPs":{"publicIPs":["20.185.96.169","20.185.96.180"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1","name":"myservice1"}' + string: '{"properties":{"provisioningState":"Succeeded","configServerProperties":{"state":"Succeeded","configServer":{"gitProperty":{"uri":"https://github.com/Azure-Samples/piggymetrics-config.git","label":"master","searchPaths":["/"]}}},"trace":{"state":"Succeeded","enabled":true,"appInsightInstrumentationKey":"00000000-0000-0000-0000-000000000000"},"version":3,"serviceId":"85785f789b8741eeaff399d1a6119f5e","networkProfile":{"outboundIPs":{"publicIPs":["40.88.234.161","40.88.234.173"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1","name":"myservice1"}' headers: cache-control: - no-cache @@ -850,7 +1014,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:15 GMT + - Wed, 24 Feb 2021 02:44:50 GMT expires: - '-1' pragma: @@ -868,7 +1032,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -884,24 +1048,24 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/apps/myapp/getResourceUploadUrl?api-version=2019-05-01-preview response: body: - string: '{"relativePath":"resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021010408-ffc14105-2a25-4609-b37d-fcae6ffab139","uploadUrl":"https://4a75bbe4fa604843938e6b21.file.core.windows.net/fac2a3e12fc84062a60d2b30747f99ff/resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021010408-ffc14105-2a25-4609-b37d-fcae6ffab139?sv=2018-03-28&sr=f&sig=IsrsvVevd60iPznLR75XUBamHNXUV8hW57Qcr0Ts%2FBU%3D&se=2021-01-04T10%3A52%3A16Z&sp=w"}' + string: '{"relativePath":"resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021022402-30d68a9b-1ac2-407e-a5ee-dd426e64f0e1","uploadUrl":"https://10e672e2abf74569ae3eb749.file.core.windows.net/85785f789b8741eeaff399d1a6119f5e/resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021022402-30d68a9b-1ac2-407e-a5ee-dd426e64f0e1?sv=2018-03-28&sr=f&sig=IYJNtSxKQ6ApHShhE9ojz31GVyZJPhuUZDfhCC8qTAQ%3D&se=2021-02-24T04%3A44%3A51Z&sp=w"}' headers: cache-control: - no-cache content-length: - - '471' + - '469' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:16 GMT + - Wed, 24 Feb 2021 02:44:51 GMT expires: - '-1' pragma: @@ -919,7 +1083,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -935,8 +1099,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -950,7 +1114,7 @@ interactions: content-length: - '0' date: - - Mon, 04 Jan 2021 08:52:17 GMT + - Wed, 24 Feb 2021 02:45:13 GMT expires: - '-1' pragma: @@ -964,7 +1128,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1198' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -980,15 +1144,15 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/enableTestEndpoint?api-version=2019-05-01-preview response: body: - string: '{"primaryKey":"reaSkgLlUrdzAGomvV7PvL5ufcsFmL4BDQd7nQu82EzgkSnUKgPnWBuzqXYlBLNS","secondaryKey":"fR3SDyrN7cj5M1L0Dl0YtgxJKwzcDYpTlvlTueeslr2y14Zi5g7S6hngp7341NrJ","primaryTestEndpoint":"https://primary:reaSkgLlUrdzAGomvV7PvL5ufcsFmL4BDQd7nQu82EzgkSnUKgPnWBuzqXYlBLNS@myservice1.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:fR3SDyrN7cj5M1L0Dl0YtgxJKwzcDYpTlvlTueeslr2y14Zi5g7S6hngp7341NrJ@myservice1.test.azuremicroservices.io","enabled":true}' + string: '{"primaryKey":"ml7fK4dTDKrtcHrWW631oJdFh0apjrCV3iAc8fzBG6o3ZMA9EMya2eZx527h8Pq4","secondaryKey":"fTbGcLPrf013JbGvXd3Q5MWQEC2JpHUhhD4g36u48XHaDPftxemLPOWDjfJq2Ffc","primaryTestEndpoint":"https://primary:ml7fK4dTDKrtcHrWW631oJdFh0apjrCV3iAc8fzBG6o3ZMA9EMya2eZx527h8Pq4@myservice1.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:fTbGcLPrf013JbGvXd3Q5MWQEC2JpHUhhD4g36u48XHaDPftxemLPOWDjfJq2Ffc@myservice1.test.azuremicroservices.io","enabled":true}' headers: cache-control: - no-cache @@ -997,7 +1161,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:17 GMT + - Wed, 24 Feb 2021 02:45:13 GMT expires: - '-1' pragma: @@ -1015,7 +1179,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1197' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1033,15 +1197,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/regenerateTestKey?api-version=2019-05-01-preview response: body: - string: '{"primaryKey":"RbGJQjk5TMKFUvJqmwSXH7FfSVr5ZgqeYhp28VN3uiNVcs83dECmtRF5rKe6hnFN","secondaryKey":"fR3SDyrN7cj5M1L0Dl0YtgxJKwzcDYpTlvlTueeslr2y14Zi5g7S6hngp7341NrJ","primaryTestEndpoint":"https://primary:RbGJQjk5TMKFUvJqmwSXH7FfSVr5ZgqeYhp28VN3uiNVcs83dECmtRF5rKe6hnFN@myservice1.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:fR3SDyrN7cj5M1L0Dl0YtgxJKwzcDYpTlvlTueeslr2y14Zi5g7S6hngp7341NrJ@myservice1.test.azuremicroservices.io","enabled":true}' + string: '{"primaryKey":"GYMZklClafBFZEiTtY89wgtvapqiTVBo8oYS76dpfnwIDQzS8gngsjwlfedVj8B6","secondaryKey":"fTbGcLPrf013JbGvXd3Q5MWQEC2JpHUhhD4g36u48XHaDPftxemLPOWDjfJq2Ffc","primaryTestEndpoint":"https://primary:GYMZklClafBFZEiTtY89wgtvapqiTVBo8oYS76dpfnwIDQzS8gngsjwlfedVj8B6@myservice1.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:fTbGcLPrf013JbGvXd3Q5MWQEC2JpHUhhD4g36u48XHaDPftxemLPOWDjfJq2Ffc@myservice1.test.azuremicroservices.io","enabled":true}' headers: cache-control: - no-cache @@ -1050,7 +1214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:18 GMT + - Wed, 24 Feb 2021 02:45:14 GMT expires: - '-1' pragma: @@ -1068,7 +1232,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1196' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1084,15 +1248,15 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/Spring/myservice1/listTestKeys?api-version=2019-05-01-preview response: body: - string: '{"primaryKey":"RbGJQjk5TMKFUvJqmwSXH7FfSVr5ZgqeYhp28VN3uiNVcs83dECmtRF5rKe6hnFN","secondaryKey":"fR3SDyrN7cj5M1L0Dl0YtgxJKwzcDYpTlvlTueeslr2y14Zi5g7S6hngp7341NrJ","primaryTestEndpoint":"https://primary:RbGJQjk5TMKFUvJqmwSXH7FfSVr5ZgqeYhp28VN3uiNVcs83dECmtRF5rKe6hnFN@myservice1.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:fR3SDyrN7cj5M1L0Dl0YtgxJKwzcDYpTlvlTueeslr2y14Zi5g7S6hngp7341NrJ@myservice1.test.azuremicroservices.io","enabled":true}' + string: '{"primaryKey":"GYMZklClafBFZEiTtY89wgtvapqiTVBo8oYS76dpfnwIDQzS8gngsjwlfedVj8B6","secondaryKey":"fTbGcLPrf013JbGvXd3Q5MWQEC2JpHUhhD4g36u48XHaDPftxemLPOWDjfJq2Ffc","primaryTestEndpoint":"https://primary:GYMZklClafBFZEiTtY89wgtvapqiTVBo8oYS76dpfnwIDQzS8gngsjwlfedVj8B6@myservice1.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:fTbGcLPrf013JbGvXd3Q5MWQEC2JpHUhhD4g36u48XHaDPftxemLPOWDjfJq2Ffc@myservice1.test.azuremicroservices.io","enabled":true}' headers: cache-control: - no-cache @@ -1101,7 +1265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:18 GMT + - Wed, 24 Feb 2021 02:45:14 GMT expires: - '-1' pragma: @@ -1119,7 +1283,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1195' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1137,8 +1301,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1155,7 +1319,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:52:19 GMT + - Wed, 24 Feb 2021 02:45:17 GMT expires: - '-1' pragma: @@ -1173,7 +1337,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1194' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1189,8 +1353,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1204,7 +1368,7 @@ interactions: content-length: - '0' date: - - Mon, 04 Jan 2021 08:52:21 GMT + - Wed, 24 Feb 2021 02:45:18 GMT expires: - '-1' pragma: @@ -1218,7 +1382,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1234,8 +1398,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1245,17 +1409,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026?api-version=2019-05-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 04 Jan 2021 08:52:22 GMT + - Wed, 24 Feb 2021 02:45:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationResults/208f24c4-9541-4863-849b-4bf841f80d78/Spring/myservice1?api-version=2019-05-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationResults/c6f6b82f-eb32-4745-bb5b-fa75c6a35026/Spring/myservice1?api-version=2019-05-01-preview pragma: - no-cache server: @@ -1267,130 +1431,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14998' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:52:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:53:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:53:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1404,22 +1445,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026","name":"c6f6b82f-eb32-4745-bb5b-fa75c6a35026","status":"Running","startTime":"2021-02-24T02:45:20.246541Z"}' headers: cache-control: - no-cache content-length: - - '378' + - '377' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:53:24 GMT + - Wed, 24 Feb 2021 02:45:51 GMT expires: - '-1' pragma: @@ -1431,7 +1472,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1445,22 +1486,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026","name":"c6f6b82f-eb32-4745-bb5b-fa75c6a35026","status":"Running","startTime":"2021-02-24T02:45:20.246541Z"}' headers: cache-control: - no-cache content-length: - - '378' + - '377' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 08:53:35 GMT + - Wed, 24 Feb 2021 02:46:02 GMT expires: - '-1' pragma: @@ -1472,7 +1513,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1486,4040 +1527,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026?api-version=2019-05-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/c6f6b82f-eb32-4745-bb5b-fa75c6a35026","name":"c6f6b82f-eb32-4745-bb5b-fa75c6a35026","status":"Succeeded","startTime":"2021-02-24T02:45:20.246541Z","endTime":"2021-02-24T02:46:10.1624109Z"}' headers: cache-control: - no-cache content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:53:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:53:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:54:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:54:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:54:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:54:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:54:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:54:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:55:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:55:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:55:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:55:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:55:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:56:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:56:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:56:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:56:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:56:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:56:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:57:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:57:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:57:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:57:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:57:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:57:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:58:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:58:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:58:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:58:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:58:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:58:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:59:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:59:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:59:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:59:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:59:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 08:59:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:00:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:00:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:00:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:00:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:00:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:00:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:01:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:01:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:01:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:01:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:01:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:02:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:02:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:02:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:02:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:02:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:02:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:03:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:03:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:03:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:03:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:03:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:03:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:04:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:04:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:04:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:04:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:04:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:04:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:05:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:05:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:05:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:05:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:05:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:06:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:06:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:06:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:06:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:06:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:06:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:07:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:07:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:07:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:07:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:07:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:07:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:08:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:08:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:08:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:08:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:08:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:08:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:09:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:09:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:09:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:09:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:09:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:09:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:10:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:10:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Running","startTime":"2021-01-04T08:52:22.3982834Z"}' - headers: - cache-control: - - no-cache - content-length: - - '378' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:10:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78?api-version=2019-05-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2019_05_01_preview_test_appplatformd7d51774/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice1/operationId/208f24c4-9541-4863-849b-4bf841f80d78","name":"208f24c4-9541-4863-849b-4bf841f80d78","status":"Succeeded","startTime":"2021-01-04T08:52:22.3982834Z","endTime":"2021-01-04T09:10:41.4047841Z"}' - headers: - cache-control: - - no-cache - content-length: - - '421' + - '420' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:10:41 GMT + - Wed, 24 Feb 2021 02:46:12 GMT expires: - '-1' pragma: @@ -5535,7 +1558,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK diff --git a/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2020_07_01.test_appplatform.yaml b/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2020_07_01.test_appplatform.yaml index f53013f0a414..68a665ea6c2b 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2020_07_01.test_appplatform.yaml +++ b/sdk/appplatform/azure-mgmt-appplatform/tests/recordings/test_cli_mgmt_appplatform_2020_07_01.test_appplatform.yaml @@ -13,18 +13,18 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2?api-version=2020-07-01 response: body: - string: '{"properties":{"provisioningState":"Creating","version":3,"serviceId":"6b2372fd08da4ab5b984a80e6bd22ea4"},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2","name":"myservice2"}' + string: '{"properties":{"provisioningState":"Creating","version":3,"serviceId":"c67d503f040c49d094b56dc91d36448f"},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2","name":"myservice2"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -32,11 +32,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:11:02 GMT + - Wed, 24 Feb 2021 02:46:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/2c097947-0806-4bfd-8da2-aeb978e844ea/Spring/myservice2?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/888d3129-680f-4736-af7d-2ee99299f1a1/Spring/myservice2?api-version=2020-07-01 pragma: - no-cache server: @@ -48,7 +48,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 201 message: Created @@ -62,13 +62,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -77,7 +77,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:11:33 GMT + - Wed, 24 Feb 2021 02:47:08 GMT expires: - '-1' pragma: @@ -89,7 +89,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -103,13 +103,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -118,7 +118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:11:45 GMT + - Wed, 24 Feb 2021 02:47:19 GMT expires: - '-1' pragma: @@ -130,7 +130,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -144,13 +144,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -159,7 +159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:11:55 GMT + - Wed, 24 Feb 2021 02:47:29 GMT expires: - '-1' pragma: @@ -171,7 +171,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -185,13 +185,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -200,7 +200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:12:05 GMT + - Wed, 24 Feb 2021 02:47:39 GMT expires: - '-1' pragma: @@ -212,7 +212,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -226,13 +226,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -241,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:12:16 GMT + - Wed, 24 Feb 2021 02:47:50 GMT expires: - '-1' pragma: @@ -253,7 +253,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -267,13 +267,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -282,7 +282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:12:26 GMT + - Wed, 24 Feb 2021 02:48:01 GMT expires: - '-1' pragma: @@ -294,7 +294,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -308,13 +308,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -323,7 +323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:12:36 GMT + - Wed, 24 Feb 2021 02:48:11 GMT expires: - '-1' pragma: @@ -335,7 +335,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -349,13 +349,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -364,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:12:46 GMT + - Wed, 24 Feb 2021 02:48:21 GMT expires: - '-1' pragma: @@ -376,7 +376,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -390,13 +390,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -405,7 +405,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:12:57 GMT + - Wed, 24 Feb 2021 02:48:32 GMT expires: - '-1' pragma: @@ -417,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -431,13 +431,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -446,7 +446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:07 GMT + - Wed, 24 Feb 2021 02:48:42 GMT expires: - '-1' pragma: @@ -458,7 +458,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -472,13 +472,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -487,7 +487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:17 GMT + - Wed, 24 Feb 2021 02:48:52 GMT expires: - '-1' pragma: @@ -499,7 +499,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -513,13 +513,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -528,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:27 GMT + - Wed, 24 Feb 2021 02:49:03 GMT expires: - '-1' pragma: @@ -540,7 +540,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -554,13 +554,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:38 GMT + - Wed, 24 Feb 2021 02:49:13 GMT expires: - '-1' pragma: @@ -581,7 +581,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -595,13 +595,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Running","startTime":"2021-01-04T09:11:00.6386416Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' headers: cache-control: - no-cache @@ -610,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:48 GMT + - Wed, 24 Feb 2021 02:49:23 GMT expires: - '-1' pragma: @@ -622,7 +622,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -636,13 +636,54 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2c097947-0806-4bfd-8da2-aeb978e844ea","name":"2c097947-0806-4bfd-8da2-aeb978e844ea","status":"Succeeded","startTime":"2021-01-04T09:11:00.6386416Z","endTime":"2021-01-04T09:13:58.2067052Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Running","startTime":"2021-02-24T02:46:35.4428306Z"}' + headers: + cache-control: + - no-cache + content-length: + - '370' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:49:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1?api-version=2020-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/888d3129-680f-4736-af7d-2ee99299f1a1","name":"888d3129-680f-4736-af7d-2ee99299f1a1","status":"Succeeded","startTime":"2021-02-24T02:46:35.4428306Z","endTime":"2021-02-24T02:49:37.9830755Z"}' headers: cache-control: - no-cache @@ -651,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:58 GMT + - Wed, 24 Feb 2021 02:49:44 GMT expires: - '-1' pragma: @@ -667,7 +708,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -681,22 +722,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2?api-version=2020-07-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","version":3,"serviceId":"6b2372fd08da4ab5b984a80e6bd22ea4","networkProfile":{"outboundIPs":{"publicIPs":["20.185.96.226","20.185.97.176"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2","name":"myservice2"}' + string: '{"properties":{"provisioningState":"Succeeded","version":3,"serviceId":"c67d503f040c49d094b56dc91d36448f","networkProfile":{"outboundIPs":{"publicIPs":["52.190.41.89","52.190.42.100"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2","name":"myservice2"}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:13:59 GMT + - Wed, 24 Feb 2021 02:49:44 GMT expires: - '-1' pragma: @@ -714,7 +755,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -733,8 +774,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -744,7 +785,7 @@ interactions: string: '{"properties":{"provisioningState":"Updating"},"type":"Microsoft.AppPlatform/Spring/configServers","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/configServers/default","name":"default"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -752,11 +793,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:14:00 GMT + - Wed, 24 Feb 2021 02:49:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/0b69f664-3b6d-487f-a21f-cc8420573996/Spring/myservice2?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d/Spring/myservice2?api-version=2020-07-01 pragma: - no-cache server: @@ -768,7 +809,89 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","name":"2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","status":"Running","startTime":"2021-02-24T02:49:47.2752021Z"}' + headers: + cache-control: + - no-cache + content-length: + - '370' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:50:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","name":"2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","status":"Running","startTime":"2021-02-24T02:49:47.2752021Z"}' + headers: + cache-control: + - no-cache + content-length: + - '370' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:50:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx/1.17.7 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-rp-server-mvid: + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -782,13 +905,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996","name":"0b69f664-3b6d-487f-a21f-cc8420573996","status":"Running","startTime":"2021-01-04T09:14:01.0540903Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","name":"2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","status":"Running","startTime":"2021-02-24T02:49:47.2752021Z"}' headers: cache-control: - no-cache @@ -797,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:14:32 GMT + - Wed, 24 Feb 2021 02:50:39 GMT expires: - '-1' pragma: @@ -809,7 +932,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -823,13 +946,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996","name":"0b69f664-3b6d-487f-a21f-cc8420573996","status":"Running","startTime":"2021-01-04T09:14:01.0540903Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","name":"2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","status":"Running","startTime":"2021-02-24T02:49:47.2752021Z"}' headers: cache-control: - no-cache @@ -838,7 +961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:14:42 GMT + - Wed, 24 Feb 2021 02:50:49 GMT expires: - '-1' pragma: @@ -850,7 +973,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -864,13 +987,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996","name":"0b69f664-3b6d-487f-a21f-cc8420573996","status":"Running","startTime":"2021-01-04T09:14:01.0540903Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","name":"2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","status":"Running","startTime":"2021-02-24T02:49:47.2752021Z"}' headers: cache-control: - no-cache @@ -879,7 +1002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:14:52 GMT + - Wed, 24 Feb 2021 02:51:00 GMT expires: - '-1' pragma: @@ -891,7 +1014,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -905,13 +1028,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/0b69f664-3b6d-487f-a21f-cc8420573996","name":"0b69f664-3b6d-487f-a21f-cc8420573996","status":"Succeeded","startTime":"2021-01-04T09:14:01.0540903Z","endTime":"2021-01-04T09:14:58.0242076Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","name":"2e8b2af6-b2d8-4805-b96c-5dbede7eb50d","status":"Succeeded","startTime":"2021-02-24T02:49:47.2752021Z","endTime":"2021-02-24T02:51:05.2373013Z"}' headers: cache-control: - no-cache @@ -920,7 +1043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:15:02 GMT + - Wed, 24 Feb 2021 02:51:10 GMT expires: - '-1' pragma: @@ -936,7 +1059,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -950,8 +1073,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/configServers/default?api-version=2020-07-01 response: @@ -965,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:15:03 GMT + - Wed, 24 Feb 2021 02:51:10 GMT expires: - '-1' pragma: @@ -981,7 +1104,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -999,8 +1122,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -1010,7 +1133,7 @@ interactions: string: '{"properties":{"public":false,"provisioningState":"Creating","enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/24c99478-f515-40b2-b9c6-d19ac9bb7097?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/150924cc-8937-4d94-9505-9615f5ca87d9?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1018,11 +1141,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:15:04 GMT + - Wed, 24 Feb 2021 02:51:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/24c99478-f515-40b2-b9c6-d19ac9bb7097/Spring/myapp?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/150924cc-8937-4d94-9505-9615f5ca87d9/Spring/myapp?api-version=2020-07-01 pragma: - no-cache server: @@ -1034,7 +1157,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 201 message: Created @@ -1048,13 +1171,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/24c99478-f515-40b2-b9c6-d19ac9bb7097?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/150924cc-8937-4d94-9505-9615f5ca87d9?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/24c99478-f515-40b2-b9c6-d19ac9bb7097","name":"24c99478-f515-40b2-b9c6-d19ac9bb7097","status":"Succeeded","startTime":"2021-01-04T09:15:05.3258287Z","endTime":"2021-01-04T09:15:11.6620369Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/150924cc-8937-4d94-9505-9615f5ca87d9","name":"150924cc-8937-4d94-9505-9615f5ca87d9","status":"Succeeded","startTime":"2021-02-24T02:51:12.8628981Z","endTime":"2021-02-24T02:51:19.0325879Z"}' headers: cache-control: - no-cache @@ -1063,7 +1186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:15:36 GMT + - Wed, 24 Feb 2021 02:51:44 GMT expires: - '-1' pragma: @@ -1079,7 +1202,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1093,22 +1216,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp?api-version=2020-07-01 response: body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-01-04T09:15:11.62Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' + string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-02-24T02:51:18.994Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' headers: cache-control: - no-cache content-length: - - '588' + - '589' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:15:36 GMT + - Wed, 24 Feb 2021 02:51:45 GMT expires: - '-1' pragma: @@ -1126,7 +1249,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1145,8 +1268,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -1156,7 +1279,7 @@ interactions: string: '{"properties":{"source":{"type":"Jar","relativePath":"","version":"test-version"},"appName":"myapp","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Creating","status":"Running","active":false,"instances":null},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp/deployments/mydeployment","name":"mydeployment"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1164,11 +1287,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:15:42 GMT + - Wed, 24 Feb 2021 02:51:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/fcfd1b59-f9ac-4822-a27c-36d17992900b/Spring/mydeployment?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/28df43b2-6e2e-43e6-8366-5282d904fdef/Spring/mydeployment?api-version=2020-07-01 pragma: - no-cache server: @@ -1180,7 +1303,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 201 message: Created @@ -1194,13 +1317,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b","name":"fcfd1b59-f9ac-4822-a27c-36d17992900b","status":"Running","startTime":"2021-01-04T09:15:42.4526178Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef","name":"28df43b2-6e2e-43e6-8366-5282d904fdef","status":"Running","startTime":"2021-02-24T02:51:50.1946602Z"}' headers: cache-control: - no-cache @@ -1209,7 +1332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:16:13 GMT + - Wed, 24 Feb 2021 02:52:21 GMT expires: - '-1' pragma: @@ -1221,7 +1344,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1235,13 +1358,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b","name":"fcfd1b59-f9ac-4822-a27c-36d17992900b","status":"Running","startTime":"2021-01-04T09:15:42.4526178Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef","name":"28df43b2-6e2e-43e6-8366-5282d904fdef","status":"Running","startTime":"2021-02-24T02:51:50.1946602Z"}' headers: cache-control: - no-cache @@ -1250,7 +1373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:16:24 GMT + - Wed, 24 Feb 2021 02:52:31 GMT expires: - '-1' pragma: @@ -1262,7 +1385,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1276,13 +1399,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/fcfd1b59-f9ac-4822-a27c-36d17992900b","name":"fcfd1b59-f9ac-4822-a27c-36d17992900b","status":"Succeeded","startTime":"2021-01-04T09:15:42.4526178Z","endTime":"2021-01-04T09:16:33.8419887Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/mydeployment/operationId/28df43b2-6e2e-43e6-8366-5282d904fdef","name":"28df43b2-6e2e-43e6-8366-5282d904fdef","status":"Succeeded","startTime":"2021-02-24T02:51:50.1946602Z","endTime":"2021-02-24T02:52:35.3611734Z"}' headers: cache-control: - no-cache @@ -1291,7 +1414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:16:34 GMT + - Wed, 24 Feb 2021 02:52:42 GMT expires: - '-1' pragma: @@ -1307,7 +1430,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1321,13 +1444,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp/deployments/mydeployment?api-version=2020-07-01 response: body: - string: '{"properties":{"source":{"type":"Jar","relativePath":"","version":"test-version"},"appName":"myapp","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":false,"instances":[{"name":"myapp-mydeployment-5-64866f648d-qlpdb","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-01-04T09:15:40Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp/deployments/mydeployment","name":"mydeployment"}' + string: '{"properties":{"source":{"type":"Jar","relativePath":"","version":"test-version"},"appName":"myapp","deploymentSettings":{"cpu":1,"memoryInGB":1,"environmentVariables":null,"runtimeVersion":"Java_8"},"provisioningState":"Succeeded","status":"Running","active":false,"instances":[{"name":"myapp-mydeployment-5-58cbbf6498-nbmxh","status":"Running","discoveryStatus":"OUT_OF_SERVICE","startTime":"2021-02-24T02:51:48Z"}]},"type":"Microsoft.AppPlatform/Spring/apps/deployments","sku":{"name":"S0","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp/deployments/mydeployment","name":"mydeployment"}' headers: cache-control: - no-cache @@ -1336,7 +1459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:16:34 GMT + - Wed, 24 Feb 2021 02:52:42 GMT expires: - '-1' pragma: @@ -1354,7 +1477,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1372,30 +1495,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp?api-version=2020-07-01 response: body: - string: '{"properties":{"public":false,"provisioningState":"Updating","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-01-04T09:15:11.62Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' + string: '{"properties":{"public":false,"provisioningState":"Updating","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-02-24T02:51:18.994Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/012383c7-513c-4573-a96d-717aa0553bd8?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/8d4fd1aa-c660-43a7-8d5a-84c8c4ec2847?api-version=2020-07-01 cache-control: - no-cache content-length: - - '587' + - '588' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:16:35 GMT + - Wed, 24 Feb 2021 02:52:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/012383c7-513c-4573-a96d-717aa0553bd8/Spring/myapp?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/8d4fd1aa-c660-43a7-8d5a-84c8c4ec2847/Spring/myapp?api-version=2020-07-01 pragma: - no-cache server: @@ -1407,7 +1530,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '1198' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1421,13 +1544,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/012383c7-513c-4573-a96d-717aa0553bd8?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/8d4fd1aa-c660-43a7-8d5a-84c8c4ec2847?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/012383c7-513c-4573-a96d-717aa0553bd8","name":"012383c7-513c-4573-a96d-717aa0553bd8","status":"Succeeded","startTime":"2021-01-04T09:16:35.7144328Z","endTime":"2021-01-04T09:16:41.8554528Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/8d4fd1aa-c660-43a7-8d5a-84c8c4ec2847","name":"8d4fd1aa-c660-43a7-8d5a-84c8c4ec2847","status":"Succeeded","startTime":"2021-02-24T02:52:44.5530764Z","endTime":"2021-02-24T02:52:51.0678772Z"}' headers: cache-control: - no-cache @@ -1436,7 +1559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:06 GMT + - Wed, 24 Feb 2021 02:53:15 GMT expires: - '-1' pragma: @@ -1452,7 +1575,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1466,22 +1589,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp?api-version=2020-07-01 response: body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-01-04T09:15:11.62Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' + string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-02-24T02:51:18.994Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' headers: cache-control: - no-cache content-length: - - '588' + - '589' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:07 GMT + - Wed, 24 Feb 2021 02:53:16 GMT expires: - '-1' pragma: @@ -1499,7 +1622,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1513,24 +1636,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp?api-version=2020-07-01 response: body: - string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-01-04T09:15:11.62Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' + string: '{"properties":{"public":false,"provisioningState":"Succeeded","fqdn":"myservice2.azuremicroservices.io","httpsOnly":false,"createdTime":"2021-02-24T02:51:18.994Z","temporaryDisk":{"sizeInGB":5,"mountPath":"/tmp"},"persistentDisk":{"sizeInGB":0,"mountPath":"/persistent"},"enableEndToEndTLS":false},"type":"Microsoft.AppPlatform/Spring/apps","identity":null,"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp","name":"myapp"}' headers: cache-control: - no-cache content-length: - - '588' + - '589' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:07 GMT + - Wed, 24 Feb 2021 02:53:17 GMT expires: - '-1' pragma: @@ -1548,7 +1671,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1562,24 +1685,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2?api-version=2020-07-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","version":3,"serviceId":"6b2372fd08da4ab5b984a80e6bd22ea4","networkProfile":{"outboundIPs":{"publicIPs":["20.185.96.226","20.185.97.176"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2","name":"myservice2"}' + string: '{"properties":{"provisioningState":"Succeeded","version":3,"serviceId":"c67d503f040c49d094b56dc91d36448f","networkProfile":{"outboundIPs":{"publicIPs":["52.190.41.89","52.190.42.100"]}}},"type":"Microsoft.AppPlatform/Spring","sku":{"name":"S0","tier":"Standard"},"location":"eastus","tags":{"key1":"value1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2","name":"myservice2"}' headers: cache-control: - no-cache content-length: - - '515' + - '514' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:07 GMT + - Wed, 24 Feb 2021 02:53:17 GMT expires: - '-1' pragma: @@ -1597,7 +1720,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests: - '11999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1613,15 +1736,15 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/apps/myapp/getResourceUploadUrl?api-version=2020-07-01 response: body: - string: '{"relativePath":"resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021010409-196a918f-d594-4c44-84d7-7829dbc94f74","uploadUrl":"https://6d802901425d4549a5b739a1.file.core.windows.net/6b2372fd08da4ab5b984a80e6bd22ea4/resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021010409-196a918f-d594-4c44-84d7-7829dbc94f74?sv=2018-03-28&sr=f&sig=ZolIOExv%2BWp21fXgIce76aS%2BQxn1r%2F1Xv13ofDXWYLs%3D&se=2021-01-04T11%3A17%3A09Z&sp=w"}' + string: '{"relativePath":"resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021022402-6a153ce7-a7b4-498e-b9f6-7d846a83fdfd","uploadUrl":"https://997b5b659c084db784cdb1c1.file.core.windows.net/c67d503f040c49d094b56dc91d36448f/resources/c1b70247946b22975617cfe4f3fdebe8bad9114057300be745f0632c007d2cc9-2021022402-6a153ce7-a7b4-498e-b9f6-7d846a83fdfd?sv=2018-03-28&sr=f&sig=NDMTTBBnQWbl%2BHJH5OLB0f9pnUtA%2BO67x9U%2BjP8zqa4%3D&se=2021-02-24T04%3A53%3A18Z&sp=w"}' headers: cache-control: - no-cache @@ -1630,7 +1753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:08 GMT + - Wed, 24 Feb 2021 02:53:18 GMT expires: - '-1' pragma: @@ -1648,7 +1771,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1664,8 +1787,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1679,7 +1802,7 @@ interactions: content-length: - '0' date: - - Mon, 04 Jan 2021 09:17:09 GMT + - Wed, 24 Feb 2021 02:53:18 GMT expires: - '-1' pragma: @@ -1693,7 +1816,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1198' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1709,15 +1832,61 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/enableTestEndpoint?api-version=2020-07-01 + response: + body: + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.AppPlatform'' within the specified time period."}}' + headers: + cache-control: + - no-cache + connection: + - close + content-length: + - '149' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 24 Feb 2021 02:54:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + status: + code: 504 + message: Gateway Timeout +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/enableTestEndpoint?api-version=2020-07-01 response: body: - string: '{"primaryKey":"2RbrK2BrQGz2VkILJSwHRKIvkAId43CoV4PGhmgmUVUXtvvOD3880U6oiSQu4l3m","secondaryKey":"OEOAMuEVSQN3DAhxKwVurStvYif2IG9ipA8pIwAuoA71PLtFAdUbjVaQbynktbWW","primaryTestEndpoint":"https://primary:2RbrK2BrQGz2VkILJSwHRKIvkAId43CoV4PGhmgmUVUXtvvOD3880U6oiSQu4l3m@myservice2.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:OEOAMuEVSQN3DAhxKwVurStvYif2IG9ipA8pIwAuoA71PLtFAdUbjVaQbynktbWW@myservice2.test.azuremicroservices.io","enabled":true}' + string: '{"primaryKey":"q69kmWrZSCkKhfqVyKwxji7bUjIyW1kvYShSkzZQFjSuuKC9RzTK0kA5WKnK7in1","secondaryKey":"pr3DFP3A24MPPqRmmlHhfEtPyIHFzrNcUG0nEBTTUZm5tXlzAsx3XsTlNPCzXZ1I","primaryTestEndpoint":"https://primary:q69kmWrZSCkKhfqVyKwxji7bUjIyW1kvYShSkzZQFjSuuKC9RzTK0kA5WKnK7in1@myservice2.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:pr3DFP3A24MPPqRmmlHhfEtPyIHFzrNcUG0nEBTTUZm5tXlzAsx3XsTlNPCzXZ1I@myservice2.test.azuremicroservices.io","enabled":true}' headers: cache-control: - no-cache @@ -1726,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:09 GMT + - Wed, 24 Feb 2021 02:54:20 GMT expires: - '-1' pragma: @@ -1742,9 +1911,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1762,15 +1931,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/regenerateTestKey?api-version=2020-07-01 response: body: - string: '{"primaryKey":"ZZnytztJWo7oge9jlu2n5l1ewukwnlbyy8MvFomAgPlIc9lHGyC53xstoEWkR4gX","secondaryKey":"OEOAMuEVSQN3DAhxKwVurStvYif2IG9ipA8pIwAuoA71PLtFAdUbjVaQbynktbWW","primaryTestEndpoint":"https://primary:ZZnytztJWo7oge9jlu2n5l1ewukwnlbyy8MvFomAgPlIc9lHGyC53xstoEWkR4gX@myservice2.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:OEOAMuEVSQN3DAhxKwVurStvYif2IG9ipA8pIwAuoA71PLtFAdUbjVaQbynktbWW@myservice2.test.azuremicroservices.io","enabled":true}' + string: '{"primaryKey":"RSlKAo1LiGF8RtV0uI2Rz3W6vV7bCHkxpg7ID892xgZnOpLLC0XDqnqkUYzVVWS7","secondaryKey":"pr3DFP3A24MPPqRmmlHhfEtPyIHFzrNcUG0nEBTTUZm5tXlzAsx3XsTlNPCzXZ1I","primaryTestEndpoint":"https://primary:RSlKAo1LiGF8RtV0uI2Rz3W6vV7bCHkxpg7ID892xgZnOpLLC0XDqnqkUYzVVWS7@myservice2.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:pr3DFP3A24MPPqRmmlHhfEtPyIHFzrNcUG0nEBTTUZm5tXlzAsx3XsTlNPCzXZ1I@myservice2.test.azuremicroservices.io","enabled":true}' headers: cache-control: - no-cache @@ -1779,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:10 GMT + - Wed, 24 Feb 2021 02:54:20 GMT expires: - '-1' pragma: @@ -1795,9 +1964,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1813,15 +1982,15 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/Spring/myservice2/listTestKeys?api-version=2020-07-01 response: body: - string: '{"primaryKey":"ZZnytztJWo7oge9jlu2n5l1ewukwnlbyy8MvFomAgPlIc9lHGyC53xstoEWkR4gX","secondaryKey":"OEOAMuEVSQN3DAhxKwVurStvYif2IG9ipA8pIwAuoA71PLtFAdUbjVaQbynktbWW","primaryTestEndpoint":"https://primary:ZZnytztJWo7oge9jlu2n5l1ewukwnlbyy8MvFomAgPlIc9lHGyC53xstoEWkR4gX@myservice2.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:OEOAMuEVSQN3DAhxKwVurStvYif2IG9ipA8pIwAuoA71PLtFAdUbjVaQbynktbWW@myservice2.test.azuremicroservices.io","enabled":true}' + string: '{"primaryKey":"RSlKAo1LiGF8RtV0uI2Rz3W6vV7bCHkxpg7ID892xgZnOpLLC0XDqnqkUYzVVWS7","secondaryKey":"pr3DFP3A24MPPqRmmlHhfEtPyIHFzrNcUG0nEBTTUZm5tXlzAsx3XsTlNPCzXZ1I","primaryTestEndpoint":"https://primary:RSlKAo1LiGF8RtV0uI2Rz3W6vV7bCHkxpg7ID892xgZnOpLLC0XDqnqkUYzVVWS7@myservice2.test.azuremicroservices.io","secondaryTestEndpoint":"https://secondary:pr3DFP3A24MPPqRmmlHhfEtPyIHFzrNcUG0nEBTTUZm5tXlzAsx3XsTlNPCzXZ1I@myservice2.test.azuremicroservices.io","enabled":true}' headers: cache-control: - no-cache @@ -1830,7 +1999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:10 GMT + - Wed, 24 Feb 2021 02:54:21 GMT expires: - '-1' pragma: @@ -1846,9 +2015,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1866,8 +2035,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1884,7 +2053,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:11 GMT + - Wed, 24 Feb 2021 02:54:22 GMT expires: - '-1' pragma: @@ -1900,9 +2069,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -1918,8 +2087,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1929,17 +2098,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/d0d1f5f5-4427-4ebd-983c-37c560bf886d?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/c33b31cd-b6ff-4026-8adf-dc0425d01f8a?api-version=2020-07-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 04 Jan 2021 09:17:11 GMT + - Wed, 24 Feb 2021 02:54:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/d0d1f5f5-4427-4ebd-983c-37c560bf886d/Spring/myapp?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/c33b31cd-b6ff-4026-8adf-dc0425d01f8a/Spring/myapp?api-version=2020-07-01 pragma: - no-cache server: @@ -1951,7 +2120,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -1967,8 +2136,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1978,17 +2147,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/689ac9ae-69fb-4726-9219-e753c9cd71e0?api-version=2020-07-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 04 Jan 2021 09:17:12 GMT + - Wed, 24 Feb 2021 02:54:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127/Spring/myservice2?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationResults/689ac9ae-69fb-4726-9219-e753c9cd71e0/Spring/myservice2?api-version=2020-07-01 pragma: - no-cache server: @@ -2000,7 +2169,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14998' x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -2014,13 +2183,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/d0d1f5f5-4427-4ebd-983c-37c560bf886d?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/c33b31cd-b6ff-4026-8adf-dc0425d01f8a?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/d0d1f5f5-4427-4ebd-983c-37c560bf886d","name":"d0d1f5f5-4427-4ebd-983c-37c560bf886d","status":"Succeeded","startTime":"2021-01-04T09:17:12.2799947Z","endTime":"2021-01-04T09:17:20.4607037Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myapp/operationId/c33b31cd-b6ff-4026-8adf-dc0425d01f8a","name":"c33b31cd-b6ff-4026-8adf-dc0425d01f8a","status":"Succeeded","startTime":"2021-02-24T02:54:23.6781026Z","endTime":"2021-02-24T02:54:30.9662645Z"}' headers: cache-control: - no-cache @@ -2029,7 +2198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:17:43 GMT + - Wed, 24 Feb 2021 02:54:54 GMT expires: - '-1' pragma: @@ -2045,7 +2214,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK @@ -2059,136 +2228,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:17:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:17:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:18:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/689ac9ae-69fb-4726-9219-e753c9cd71e0?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/689ac9ae-69fb-4726-9219-e753c9cd71e0","name":"689ac9ae-69fb-4726-9219-e753c9cd71e0","status":"Running","startTime":"2021-02-24T02:54:24.5655902Z"}' headers: cache-control: - no-cache @@ -2197,7 +2243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:18:14 GMT + - Wed, 24 Feb 2021 02:54:55 GMT expires: - '-1' pragma: @@ -2209,7 +2255,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 202 message: Accepted @@ -2223,2564 +2269,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.4.72-microsoft-standard-WSL2-x86_64-with-Ubuntu-18.04-bionic) + msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-appplatform/1.2.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/689ac9ae-69fb-4726-9219-e753c9cd71e0?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/689ac9ae-69fb-4726-9219-e753c9cd71e0","name":"689ac9ae-69fb-4726-9219-e753c9cd71e0","status":"Succeeded","startTime":"2021-02-24T02:54:24.5655902Z","endTime":"2021-02-24T02:55:03.9021035Z"}' headers: cache-control: - no-cache content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:18:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:18:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:18:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:18:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:19:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:19:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:19:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:19:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:19:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:19:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:20:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:20:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:20:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:20:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:20:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:21:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:21:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:21:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:21:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:21:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:21:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:22:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:22:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:22:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:22:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:22:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:22:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:23:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:23:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:23:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:23:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:23:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:23:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:24:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:24:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:24:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:24:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:24:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:24:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:25:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:25:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:25:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:25:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:25:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:26:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:26:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:26:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:26:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:26:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:26:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:27:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:27:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:27:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:27:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:27:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:27:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:28:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:28:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:28:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:28:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:28:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Running","startTime":"2021-01-04T09:17:13.2173391Z"}' - headers: - cache-control: - - no-cache - content-length: - - '370' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 04 Jan 2021 09:28:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.17.7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.19.121-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-appplatform/1.1.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127?api-version=2020-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_appplatform_2020_07_01_test_appplatform25ce140d/providers/Microsoft.AppPlatform/locations/eastus/operationStatus/myservice2/operationId/fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","name":"fce7ebbb-7a5b-4b3c-82b8-8dfcf9a71127","status":"Succeeded","startTime":"2021-01-04T09:17:13.2173391Z","endTime":"2021-01-04T09:29:01.035034Z"}' - headers: - cache-control: - - no-cache - content-length: - - '412' + - '413' content-type: - application/json; charset=utf-8 date: - - Mon, 04 Jan 2021 09:29:07 GMT + - Wed, 24 Feb 2021 02:55:06 GMT expires: - '-1' pragma: @@ -4796,7 +2300,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - d82b857d-a974-4c29-8dc8-18f1eca47316 + - 47277a42-ad87-4a64-879d-ff565e3b324d status: code: 200 message: OK diff --git a/sdk/appplatform/azure-mgmt-appplatform/tests/test_cli_mgmt_appplatform_2020_07_01.py b/sdk/appplatform/azure-mgmt-appplatform/tests/test_cli_mgmt_appplatform_2020_07_01.py index d5fc4e137255..9245b0346c3c 100644 --- a/sdk/appplatform/azure-mgmt-appplatform/tests/test_cli_mgmt_appplatform_2020_07_01.py +++ b/sdk/appplatform/azure-mgmt-appplatform/tests/test_cli_mgmt_appplatform_2020_07_01.py @@ -24,6 +24,7 @@ AZURE_LOCATION = 'eastus' +@unittest.skip("unavailable in py2.7") class MgmtAppPlatformTest(AzureMgmtTestCase): def setUp(self):