From 2bcf2574699456d20bca58736262e48398b8ef1d Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 14:25:23 +0800
Subject: [PATCH 01/12] az containerapp create/update --yaml support
exposedPort
---
.../azext_containerapp/_sdk_models.py | 11 ++++++++-
.../latest/test_containerapp_commands.py | 23 +++++++++++++++----
2 files changed, 28 insertions(+), 6 deletions(-)
diff --git a/src/containerapp/azext_containerapp/_sdk_models.py b/src/containerapp/azext_containerapp/_sdk_models.py
index 81f3ca17c44..32d8ddcc74c 100644
--- a/src/containerapp/azext_containerapp/_sdk_models.py
+++ b/src/containerapp/azext_containerapp/_sdk_models.py
@@ -864,6 +864,7 @@ class Configuration(Model):
'ingress': {'key': 'ingress', 'type': 'Ingress'},
'dapr': {'key': 'dapr', 'type': 'Dapr'},
'registries': {'key': 'registries', 'type': '[RegistryCredentials]'},
+ 'max_inactive_revisions': {'key': 'maxInactiveRevisions', 'type': 'int'},
}
def __init__(self, **kwargs):
@@ -1515,6 +1516,10 @@ class Dapr(Model):
'app_id': {'key': 'appId', 'type': 'str'},
'app_protocol': {'key': 'appProtocol', 'type': 'str'},
'app_port': {'key': 'appPort', 'type': 'int'},
+ 'http_read_buffer_size': {'key': 'httpReadBufferSize', 'type': 'int'},
+ 'http_max_request_size': {'key': 'httpMaxRequestSize', 'type': 'int'},
+ 'log_level': {'key': 'logLevel', 'type': 'str'},
+ 'enable_api_logging': {'key': 'enableApiLogging', 'type': 'bool'},
}
def __init__(self, **kwargs):
@@ -2096,11 +2101,14 @@ class Ingress(Model):
'fqdn': {'key': 'fqdn', 'type': 'str'},
'external': {'key': 'external', 'type': 'bool'},
'target_port': {'key': 'targetPort', 'type': 'int'},
+ 'exposed_port': {'key': 'exposedPort', 'type': 'int'},
'transport': {'key': 'transport', 'type': 'str'},
'traffic': {'key': 'traffic', 'type': '[TrafficWeight]'},
'custom_domains': {'key': 'customDomains', 'type': '[CustomDomain]'},
'allow_insecure': {'key': 'allowInsecure', 'type': 'bool'},
- 'ipSecurityRestrictions': {'key': 'ipSecurityRestrictions', 'type': '[IPSecurityRestrictions]'},
+ 'ip_security_restrictions': {'key': 'ipSecurityRestrictions', 'type': '[IPSecurityRestrictions]'},
+ 'client_certificate_mode': {'key': 'clientCertificateMode', 'type': 'str'},
+ 'cors_policy': {'key': 'corsPolicy', 'type': 'CorsPolicy'},
}
def __init__(self, **kwargs):
@@ -2697,6 +2705,7 @@ class RegistryCredentials(Model):
'server': {'key': 'server', 'type': 'str'},
'username': {'key': 'username', 'type': 'str'},
'password_secret_ref': {'key': 'passwordSecretRef', 'type': 'str'},
+ 'identity': {'key': 'identity', 'type': 'str'},
}
def __init__(self, **kwargs):
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
index 40dcd5c815a..75b30a13b93 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
@@ -926,10 +926,19 @@ def test_containerapp_create_with_yaml(self, resource_group):
self.cmd('configure --defaults location={}'.format(TEST_LOCATION))
env = self.create_random_name(prefix='env', length=24)
- app = self.create_random_name(prefix='yaml', length=24)
+ vnet = self.create_random_name(prefix='name', length=24)
- create_containerapp_env(self, env, resource_group)
- containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env)).get_output_in_json()
+ self.cmd(f"network vnet create --address-prefixes '14.0.0.0/23' -g {resource_group} -n {vnet}")
+ sub_id = self.cmd(f"network vnet subnet create --address-prefixes '14.0.0.0/23' -n sub -g {resource_group} --vnet-name {vnet}").get_output_in_json()["id"]
+
+ self.cmd(f'containerapp env create -g {resource_group} -n {env} --internal-only -s {sub_id}')
+ containerapp_env = self.cmd(f'containerapp env show -g {resource_group} -n {env}').get_output_in_json()
+
+ while containerapp_env["properties"]["provisioningState"].lower() == "waiting":
+ time.sleep(5)
+ containerapp_env = self.cmd(f'containerapp env show -g {resource_group} -n {env}').get_output_in_json()
+
+ app = self.create_random_name(prefix='yaml', length=24)
user_identity_name = self.create_random_name(prefix='containerapp-user', length=24)
user_identity = self.cmd('identity create -g {} -n {}'.format(resource_group, user_identity_name)).get_output_in_json()
@@ -947,12 +956,13 @@ def test_containerapp_create_with_yaml(self, resource_group):
activeRevisionsMode: Multiple
ingress:
external: true
+ exposedPort: 3000
allowInsecure: false
targetPort: 80
traffic:
- latestRevision: true
weight: 100
- transport: Auto
+ transport: Tcp
template:
revisionSuffix: myrevision
containers:
@@ -983,6 +993,7 @@ def test_containerapp_create_with_yaml(self, resource_group):
self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[
JMESPathCheck("properties.provisioningState", "Succeeded"),
JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.configuration.ingress.exposedPort", 3000),
JMESPathCheck("properties.environmentId", containerapp_env["id"]),
JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
JMESPathCheck("properties.template.containers[0].name", "nginx"),
@@ -1002,12 +1013,13 @@ def test_containerapp_create_with_yaml(self, resource_group):
activeRevisionsMode: Multiple
ingress:
external: true
+ exposedPort: 9551
allowInsecure: false
targetPort: 80
traffic:
- latestRevision: true
weight: 100
- transport: Auto
+ transport: Tcp
template:
revisionSuffix: myrevision
containers:
@@ -1033,6 +1045,7 @@ def test_containerapp_create_with_yaml(self, resource_group):
self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[
JMESPathCheck("properties.provisioningState", "Succeeded"),
JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.configuration.ingress.exposedPort", 9551),
JMESPathCheck("properties.environmentId", containerapp_env["id"]),
JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
JMESPathCheck("properties.template.containers[0].name", "nginx"),
From 150d6a4e632d301194c58705d02358ad76110251 Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 14:59:16 +0800
Subject: [PATCH 02/12] fix patch and add tests
---
src/containerapp/azext_containerapp/custom.py | 2 +-
.../test_containerapp_create_with_yaml.yaml | 8796 +++++++++++++++--
.../test_containerapp_env_logs_e2e.yaml | 1189 +--
...ontainerapp_env_update_custom_domains.yaml | 5794 +++++++++++
.../latest/test_containerapp_env_commands.py | 7 +
5 files changed, 14074 insertions(+), 1714 deletions(-)
create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_update_custom_domains.yaml
diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py
index fe57c3389f6..f989832f157 100644
--- a/src/containerapp/azext_containerapp/custom.py
+++ b/src/containerapp/azext_containerapp/custom.py
@@ -1150,7 +1150,7 @@ def update_managed_environment(cmd,
if logs_destination == "log-analytics":
safe_set(env_def, "properties", "appLogsConfiguration", "logAnalyticsConfiguration", "customerId", value=logs_customer_id)
safe_set(env_def, "properties", "appLogsConfiguration", "logAnalyticsConfiguration", "sharedKey", value=logs_key)
- else:
+ elif logs_destination:
safe_set(env_def, "properties", "appLogsConfiguration", "logAnalyticsConfiguration", value=None)
# Custom domains
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
index 1a3767bdbae..d91dbabcb7c 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
@@ -1,60 +1,64 @@
interactions:
- request:
- body: '{"location": "eastus", "properties": {"retentionInDays": 30, "sku": {"name":
- "PerGB2018"}}}'
+ body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes":
+ ["14.0.0.0/23"]}, "enableDdosProtection": false, "enableVmProtection": false}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - monitor log-analytics workspace create
+ - network vnet create
Connection:
- keep-alive
Content-Length:
- - '91'
+ - '152'
Content-Type:
- application/json
ParameterSetName:
- - -g -n -l
+ - --address-prefixes -g -n
User-Agent:
- - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
response:
body:
- string: '{"properties":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-21T05:19:03.5264611Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-21T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-21T05:19:03.5264611Z","modifiedDate":"2023-03-21T05:19:03.5264611Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
+ \ \"etag\": \"W/\\\"3f8d2641-edd1-41e0-a8c1-ebaf5f234c38\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
+ \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
+ \ }\r\n}"
headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2021-12-01-preview
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
cache-control:
- no-cache
content-length:
- - '851'
+ - '614'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:05 GMT
+ - Mon, 27 Mar 2023 06:22:41 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
pragma:
- no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
server:
- - Microsoft-IIS/10.0
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - dd2ea7d7-221a-4e4a-ac3b-a7a1bc1e75e9
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
- x-powered-by:
- - ASP.NET
status:
code: 201
message: Created
@@ -66,39 +70,34 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - monitor log-analytics workspace create
+ - network vnet create
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l
+ - --address-prefixes -g -n
User-Agent:
- - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
response:
body:
- string: '{"properties":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-21T05:19:03.5264611Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-21T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-21T05:19:03.5264611Z","modifiedDate":"2023-03-21T05:19:03.5264611Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2021-12-01-preview
cache-control:
- no-cache
content-length:
- - '852'
+ - '30'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:35 GMT
+ - Mon, 27 Mar 2023 06:22:41 GMT
expires:
- '-1'
pragma:
- no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
server:
- - Microsoft-IIS/10.0
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -107,8 +106,8 @@ interactions:
- Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
+ x-ms-arm-service-request-id:
+ - 7f0fc304-08a6-4a7f-98d8-5a6799a165fb
status:
code: 200
message: OK
@@ -116,45 +115,96 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - monitor log-analytics workspace get-shared-keys
+ - network vnet create
Connection:
- keep-alive
- Content-Length:
- - '0'
ParameterSetName:
- - -g -n
+ - --address-prefixes -g -n
User-Agent:
- - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
response:
body:
- string: '{"primarySharedKey":"+o0XVYYl+BpPUGu9yW2c9nzD9PDSrD5MdWGD+vTdj+eqfh3aya3pinU/S3TPWyT+aKgzAoNnVasWzHN2Yv/KrA==","secondarySharedKey":"rWsKWoEP5zdEfpbv9hZErr0e1m3uNXyW0xMdrfFnGn5Zjy56DRDGv3WMrnE5TtBLjYDEpDVX/VlBHHclcHbNFA=="}'
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
cache-control:
- no-cache
content-length:
- - '223'
+ - '29'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:41 GMT
+ - Mon, 27 Mar 2023 06:22:52 GMT
expires:
- '-1'
pragma:
- no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
server:
- - Microsoft-IIS/10.0
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c9ef9e5e-48b6-4079-bf56-8ccf61f51f24
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
+ \ \"etag\": \"W/\\\"e98f03a9-80c0-47c5-b88f-31369d9ab961\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
+ \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '615'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:53 GMT
+ etag:
+ - W/"e98f03a9-80c0-47c5-b88f-31369d9ab961"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -163,10 +213,173 @@ interactions:
- Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - c9d78fa7-c15d-4556-9f57-83468516e7b5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "sub", "properties": {"addressPrefix": "14.0.0.0/23"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '63'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
+ \ \"etag\": \"W/\\\"ecd1dbb4-03db-43d5-afcd-84e802325583\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '524'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 31c915f1-c5d3-441c-951a-3fb12dd2d934
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
- x-powered-by:
- - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 612a6de0-d4b5-480f-b4d5-637c54bfa62f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
+ \ \"etag\": \"W/\\\"ede0f198-5ddb-461f-9ff2-88ba246f1446\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '525'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:56 GMT
+ etag:
+ - W/"ede0f198-5ddb-461f-9ff2-88ba246f1446"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - e9661b48-3953-44cb-9545-f5bf992bfc65
status:
code: 200
message: OK
@@ -182,96 +395,108 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
+ connection:
+ - close
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:41 GMT
+ - Mon, 27 Mar 2023 06:22:57 GMT
expires:
- '-1'
pragma:
@@ -297,96 +522,106 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:42 GMT
+ - Mon, 27 Mar 2023 06:22:58 GMT
expires:
- '-1'
pragma:
@@ -412,96 +647,231 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
East","UK South","West US","Central US","North Central US","South Central
US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:42 GMT
+ - Mon, 27 Mar 2023 06:22:59 GMT
expires:
- '-1'
pragma:
@@ -519,7 +889,6411 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
+ US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
+ US 2","UK South","Canada Central","Central India","Japan East","Australia
+ East","Korea Central","France Central","Central US","East US 2","East Asia","West
+ US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
+ East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
+ West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
+ Central","France South","South India","Korea South","Jio India Central","Jio
+ India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
+ US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Switzerland North","Switzerland West","Germany West Central","Australia
+ Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
+ East","Norway West","France South","South India","Korea South","Jio India
+ Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
+ Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
+ Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12653'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
+ US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
+ US 2","UK South","Canada Central","Central India","Japan East","Australia
+ East","Korea Central","France Central","Central US","East US 2","East Asia","West
+ US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
+ East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
+ West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
+ Central","France South","South India","Korea South","Jio India Central","Jio
+ India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
+ US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Switzerland North","Switzerland West","Germany West Central","Australia
+ Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
+ East","Norway West","France South","South India","Korea South","Jio India
+ Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
+ Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
+ Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12653'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "properties": {"publicNetworkAccessForIngestion":
+ "Enabled", "publicNetworkAccessForQuery": "Enabled"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '887'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:07 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '887'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: '{"primarySharedKey":"JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw==","secondarySharedKey":"5UM95FQhLx3adsCaVa40qd+2Cj976vf5XU8TPHemKxDRhdTj4kNKAgnL9ITCoSPnfIopWMlPd9yNqvRmj2rlAw=="}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
+ {"daprAIInstrumentationKey": null, "vnetConfiguration": {"infrastructureSubnetId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub",
+ "runtimeSubnetId": null, "dockerBridgeCidr": null, "platformReservedCidr": null,
+ "platformReservedDnsIP": null, "internal": true}, "appLogsConfiguration": {"destination":
+ "log-analytics", "logAnalyticsConfiguration": {"customerId": "6a164e83-41be-48ef-b72e-586abe3673cf",
+ "sharedKey": "JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw=="}},
+ "customDomainConfiguration": null, "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '758'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1371'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -527,115 +7301,47 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
cache-control:
- no-cache
content-length:
- - '9060'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:43 GMT
+ - Mon, 27 Mar 2023 06:30:16 GMT
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- - Accept-Encoding
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
- request:
- body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
- {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration":
- {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "4c67ffb8-724e-4132-a173-572d71ba9d6a", "sharedKey": "+o0XVYYl+BpPUGu9yW2c9nzD9PDSrD5MdWGD+vTdj+eqfh3aya3pinU/S3TPWyT+aKgzAoNnVasWzHN2Yv/KrA=="}},
- "customDomainConfiguration": null, "zoneRedundant": false}}'
+ body: null
headers:
Accept:
- '*/*'
@@ -645,33 +7351,27 @@ interactions:
- containerapp env create
Connection:
- keep-alive
- Content-Length:
- - '452'
- Content-Type:
- - application/json
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1080'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:50 GMT
+ - Mon, 27 Mar 2023 06:30:18 GMT
expires:
- '-1'
pragma:
@@ -680,65 +7380,68 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '99'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
- body: '{"location": "eastus"}'
+ body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - identity create
+ - containerapp env create
Connection:
- keep-alive
- Content-Length:
- - '22'
- Content-Type:
- - application/json
ParameterSetName:
- - -g -n
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ab1025be-7853-4455-bcb8-c79183a6f833","clientId":"9e535d8f-f112-4bf7-8c0e-1f4ebd0ab8d8"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
cache-control:
- no-cache
content-length:
- - '466'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 14 Mar 2023 06:30:48 GMT
+ - Mon, 27 Mar 2023 06:30:21 GMT
expires:
- '-1'
- location:
- - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ x-powered-by:
+ - ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -751,14 +7454,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -770,7 +7473,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:52 GMT
+ - Mon, 27 Mar 2023 06:30:26 GMT
expires:
- '-1'
pragma:
@@ -802,14 +7505,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -821,7 +7524,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:56 GMT
+ - Mon, 27 Mar 2023 06:30:29 GMT
expires:
- '-1'
pragma:
@@ -853,14 +7556,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -872,7 +7575,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:00 GMT
+ - Mon, 27 Mar 2023 06:30:33 GMT
expires:
- '-1'
pragma:
@@ -904,14 +7607,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -923,7 +7626,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:03 GMT
+ - Mon, 27 Mar 2023 06:30:37 GMT
expires:
- '-1'
pragma:
@@ -955,14 +7658,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"Succeeded","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -970,11 +7673,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:08 GMT
+ - Mon, 27 Mar 2023 06:30:39 GMT
expires:
- '-1'
pragma:
@@ -1006,14 +7709,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1021,11 +7724,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:11 GMT
+ - Mon, 27 Mar 2023 06:30:43 GMT
expires:
- '-1'
pragma:
@@ -1049,114 +7752,50 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp env create
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"Succeeded","startTime":"2023-03-27T06:23:15.9736951"}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
cache-control:
- no-cache
content-length:
- - '9060'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:11 GMT
+ - Mon, 27 Mar 2023 06:30:46 GMT
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- - Accept-Encoding
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
@@ -1168,18 +7807,18 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp env create
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --internal-only -s
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1187,11 +7826,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1395'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:14 GMT
+ - Mon, 27 Mar 2023 06:30:48 GMT
expires:
- '-1'
pragma:
@@ -1225,94 +7864,106 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
+ connection:
+ - close
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:15 GMT
+ - Mon, 27 Mar 2023 06:30:49 GMT
expires:
- '-1'
pragma:
@@ -1340,12 +7991,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1353,11 +8004,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1395'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:18 GMT
+ - Mon, 27 Mar 2023 06:30:50 GMT
expires:
- '-1'
pragma:
@@ -1377,6 +8028,54 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: '{"location": "eastus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2022-01-31-preview
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '464'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:56 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -1391,94 +8090,104 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:19 GMT
+ - Mon, 27 Mar 2023 06:30:56 GMT
expires:
- '-1'
pragma:
@@ -1506,12 +8215,12 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1519,11 +8228,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1395'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:21 GMT
+ - Mon, 27 Mar 2023 06:30:59 GMT
expires:
- '-1'
pragma:
@@ -1544,18 +8253,21 @@ interactions:
code: 200
message: OK
- request:
- body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": null,
- "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": {"type":
+ "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":
+ {}}, "principalId": null, "tenantId": null}, "properties": {"environmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
"configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
- {"external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"revisionName":
- null, "weight": 100, "latestRevision": true}], "customDomains": null, "allowInsecure":
- false, "ipSecurityRestrictions": null, "fqdn": null}, "dapr": null, "registries":
- null}, "template": {"revisionSuffix": "myrevision", "containers": [{"image":
- "nginx", "name": "nginx", "command": ["npm", "start"], "args": null, "env":
- [{"name": "HTTP_PORT", "value": "80", "secretRef": null}], "resources": {"cpu":
- 0.5, "memory": "1Gi", "ephemeralStorage": null}, "probes": null, "volumeMounts":
- null}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 3,
- "rules": null}, "volumes": null}}}'
+ {"external": true, "targetPort": 80, "exposedPort": 3000, "transport": "Tcp",
+ "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
+ "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
+ "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
+ null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
+ {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
headers:
Accept:
- '*/*'
@@ -1566,33 +8278,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1007'
+ - '1369'
Content-Type:
- application/json
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '2059'
+ - '2370'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:44 GMT
+ - Mon, 27 Mar 2023 06:31:06 GMT
expires:
- '-1'
pragma:
@@ -1606,7 +8318,7 @@ interactions:
x-ms-async-operation-timeout:
- PT15M
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '699'
x-powered-by:
- ASP.NET
status:
@@ -1626,12 +8338,12 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","name":"3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","status":"InProgress","startTime":"2023-03-21T05:20:26.2897934"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"InProgress","startTime":"2023-03-27T06:31:05.6744705"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1643,7 +8355,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:46 GMT
+ - Mon, 27 Mar 2023 06:31:08 GMT
expires:
- '-1'
pragma:
@@ -1677,12 +8389,12 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","name":"3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","status":"Succeeded","startTime":"2023-03-21T05:20:26.2897934"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"Succeeded","startTime":"2023-03-27T06:31:05.6744705"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1694,7 +8406,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:49 GMT
+ - Mon, 27 Mar 2023 06:31:12 GMT
expires:
- '-1'
pragma:
@@ -1728,13 +8440,13 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1742,11 +8454,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2484'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:53 GMT
+ - Mon, 27 Mar 2023 06:31:14 GMT
expires:
- '-1'
pragma:
@@ -1780,94 +8492,104 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:54 GMT
+ - Mon, 27 Mar 2023 06:31:15 GMT
expires:
- '-1'
pragma:
@@ -1895,13 +8617,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1909,11 +8631,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2484'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:56 GMT
+ - Mon, 27 Mar 2023 06:31:17 GMT
expires:
- '-1'
pragma:
@@ -1947,94 +8669,104 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:57 GMT
+ - Mon, 27 Mar 2023 06:31:17 GMT
expires:
- '-1'
pragma:
@@ -2062,94 +8794,104 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:58 GMT
+ - Mon, 27 Mar 2023 06:31:17 GMT
expires:
- '-1'
pragma:
@@ -2177,13 +8919,13 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2191,11 +8933,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2484'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:59 GMT
+ - Mon, 27 Mar 2023 06:31:20 GMT
expires:
- '-1'
pragma:
@@ -2229,94 +8971,104 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:00 GMT
+ - Mon, 27 Mar 2023 06:31:21 GMT
expires:
- '-1'
pragma:
@@ -2344,13 +9096,13 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2358,11 +9110,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2484'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:03 GMT
+ - Mon, 27 Mar 2023 06:31:23 GMT
expires:
- '-1'
pragma:
@@ -2398,9 +9150,9 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003/listSecrets?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004/listSecrets?api-version=2022-10-01
response:
body:
string: '{"value":[]}'
@@ -2415,7 +9167,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:06 GMT
+ - Mon, 27 Mar 2023 06:31:25 GMT
expires:
- '-1'
pragma:
@@ -2441,11 +9193,12 @@ interactions:
body: '{"tags": {"tagname": "value"}, "location": "eastus", "properties": {"environmentId":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
"configuration": {"activeRevisionsMode": "Multiple", "ingress": {"external":
- true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight": 100, "latestRevision":
- true}]}}, "template": {"revisionSuffix": "myrevision", "containers": [{"image":
- "nginx", "name": "nginx", "command": ["npm", "start"], "env": [{"name": "HTTP_PORT",
- "value": "80"}], "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas":
- 1, "maxReplicas": 3}}}}'
+ true, "targetPort": 80, "exposedPort": 9551, "transport": "Tcp", "traffic":
+ [{"weight": 100, "latestRevision": true}]}}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "env": [{"name": "HTTP_PORT", "value": "80"}], "resources":
+ {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas": 1, "maxReplicas":
+ 3}}}}'
headers:
Accept:
- '*/*'
@@ -2456,15 +9209,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '670'
+ - '690'
Content-Type:
- application/json
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
string: ''
@@ -2477,11 +9230,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 21 Mar 2023 05:21:08 GMT
+ - Mon, 27 Mar 2023 06:31:28 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -2491,54 +9244,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Tue, 21 Mar 2023 05:21:09 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
+ - '699'
x-powered-by:
- ASP.NET
status:
@@ -2558,9 +9264,9 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
response:
body:
string: ''
@@ -2573,11 +9279,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 21 Mar 2023 05:21:13 GMT
+ - Mon, 27 Mar 2023 06:31:30 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -2605,13 +9311,13 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:21:06.751112"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2619,11 +9325,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2172'
+ - '2484'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:16 GMT
+ - Mon, 27 Mar 2023 06:31:36 GMT
expires:
- '-1'
pragma:
@@ -2657,94 +9363,104 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:17 GMT
+ - Mon, 27 Mar 2023 06:31:36 GMT
expires:
- '-1'
pragma:
@@ -2772,13 +9488,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:21:06.751112"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2786,11 +9502,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2172'
+ - '2484'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:19 GMT
+ - Mon, 27 Mar 2023 06:31:36 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml
index 746e8865075..e846744fea1 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml
@@ -23,7 +23,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-24T03:15:08.7384657Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-24T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-24T03:15:08.7384657Z","modifiedDate":"2023-03-24T03:15:08.7384657Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-27T06:42:57.3968945Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:42:57.3968945Z","modifiedDate":"2023-03-27T06:42:57.3968945Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -36,7 +36,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:10 GMT
+ - Mon, 27 Mar 2023 06:42:58 GMT
expires:
- '-1'
location:
@@ -77,7 +77,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-24T03:15:08.7384657Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-24T18:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-24T03:15:08.7384657Z","modifiedDate":"2023-03-24T03:15:08.7384657Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-27T06:42:57.3968945Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:42:57.3968945Z","modifiedDate":"2023-03-27T06:42:57.3968945Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -90,7 +90,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:41 GMT
+ - Mon, 27 Mar 2023 06:43:29 GMT
expires:
- '-1'
pragma:
@@ -133,7 +133,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003/sharedKeys?api-version=2020-08-01
response:
body:
- string: '{"primarySharedKey":"ztW6z4kVYDX7EuNc0oX8+ahG4e2mlOjcYfGSj9ewfEngZYhVIvPsOEW8ZGib6ktdUwfnaJpjSJSaBfbtCI9EKA==","secondarySharedKey":"dQS0IscbjzCMeIYNjdKcvz8IO/16LhXedt8ro83kB6/HQsria3Y1u5S/C1ilmszS1G/fz9uH7zfrcZaQiB2NkQ=="}'
+ string: '{"primarySharedKey":"oPh4kfwHK0tFsKX0gM3ZBbI3pcFYMZlI0HIMr++Ccfo23lAw6i4Ng5/VFe2num1aCQvdJYaUyXDQ2xFIOgmKKQ==","secondarySharedKey":"xJUDksYoE880Ctbl8YtNqLyQnFI9mjmotPvHnPJ3RP0q2fs1MB4yteYT4iGT00Fwto4L2ZFmIFcgLCGSLCDRXA=="}'
headers:
access-control-allow-origin:
- '*'
@@ -146,7 +146,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:43 GMT
+ - Mon, 27 Mar 2023 06:43:32 GMT
expires:
- '-1'
pragma:
@@ -184,9 +184,9 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -281,7 +281,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:45 GMT
+ - Mon, 27 Mar 2023 06:43:33 GMT
expires:
- '-1'
pragma:
@@ -309,9 +309,9 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -406,7 +406,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:45 GMT
+ - Mon, 27 Mar 2023 06:43:34 GMT
expires:
- '-1'
pragma:
@@ -434,9 +434,9 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -531,7 +531,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:45 GMT
+ - Mon, 27 Mar 2023 06:43:34 GMT
expires:
- '-1'
pragma:
@@ -559,9 +559,9 @@ interactions:
ParameterSetName:
- -g -n --logs-workspace-id --logs-workspace-key --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -656,7 +656,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:45 GMT
+ - Mon, 27 Mar 2023 06:43:34 GMT
expires:
- '-1'
pragma:
@@ -674,7 +674,7 @@ interactions:
body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
{"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration":
{"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "59221c72-f7a9-4454-9288-df12e0de2011", "sharedKey": "ztW6z4kVYDX7EuNc0oX8+ahG4e2mlOjcYfGSj9ewfEngZYhVIvPsOEW8ZGib6ktdUwfnaJpjSJSaBfbtCI9EKA=="}},
+ "4b5418a3-3db1-4a02-9a96-a676dc7b3657", "sharedKey": "oPh4kfwHK0tFsKX0gM3ZBbI3pcFYMZlI0HIMr++Ccfo23lAw6i4Ng5/VFe2num1aCQvdJYaUyXDQ2xFIOgmKKQ=="}},
"customDomainConfiguration": null, "zoneRedundant": false}}'
headers:
Accept:
@@ -697,21 +697,21 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:15:51.479519Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:43:38.7837642Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1113'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:54 GMT
+ - Mon, 27 Mar 2023 06:43:41 GMT
expires:
- '-1'
pragma:
@@ -747,10 +747,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638","name":"b2682c7a-d422-49f4-b467-e0ac0461d638","status":"InProgress","startTime":"2023-03-24T03:15:53.3201886"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173","name":"b91ae615-b69d-4723-842c-7fa1752d6173","status":"InProgress","startTime":"2023-03-27T06:43:40.5211977"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -762,7 +762,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:56 GMT
+ - Mon, 27 Mar 2023 06:43:42 GMT
expires:
- '-1'
pragma:
@@ -798,10 +798,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638","name":"b2682c7a-d422-49f4-b467-e0ac0461d638","status":"InProgress","startTime":"2023-03-24T03:15:53.3201886"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173","name":"b91ae615-b69d-4723-842c-7fa1752d6173","status":"InProgress","startTime":"2023-03-27T06:43:40.5211977"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -813,7 +813,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:15:59 GMT
+ - Mon, 27 Mar 2023 06:43:46 GMT
expires:
- '-1'
pragma:
@@ -849,10 +849,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638","name":"b2682c7a-d422-49f4-b467-e0ac0461d638","status":"InProgress","startTime":"2023-03-24T03:15:53.3201886"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173","name":"b91ae615-b69d-4723-842c-7fa1752d6173","status":"InProgress","startTime":"2023-03-27T06:43:40.5211977"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -864,7 +864,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:04 GMT
+ - Mon, 27 Mar 2023 06:43:49 GMT
expires:
- '-1'
pragma:
@@ -900,10 +900,61 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b2682c7a-d422-49f4-b467-e0ac0461d638","name":"b2682c7a-d422-49f4-b467-e0ac0461d638","status":"Succeeded","startTime":"2023-03-24T03:15:53.3201886"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173","name":"b91ae615-b69d-4723-842c-7fa1752d6173","status":"InProgress","startTime":"2023-03-27T06:43:40.5211977"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:43:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key --logs-destination
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/b91ae615-b69d-4723-842c-7fa1752d6173","name":"b91ae615-b69d-4723-842c-7fa1752d6173","status":"Succeeded","startTime":"2023-03-27T06:43:40.5211977"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -915,7 +966,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:07 GMT
+ - Mon, 27 Mar 2023 06:43:57 GMT
expires:
- '-1'
pragma:
@@ -954,7 +1005,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:15:51.479519"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:43:38.7837642"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -962,11 +1013,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1113'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:10 GMT
+ - Mon, 27 Mar 2023 06:43:59 GMT
expires:
- '-1'
pragma:
@@ -1000,9 +1051,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -1097,7 +1148,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:11 GMT
+ - Mon, 27 Mar 2023 06:44:00 GMT
expires:
- '-1'
pragma:
@@ -1130,7 +1181,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:15:51.479519"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:43:38.7837642"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1138,11 +1189,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1113'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:13 GMT
+ - Mon, 27 Mar 2023 06:44:02 GMT
expires:
- '-1'
pragma:
@@ -1176,9 +1227,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -1273,7 +1324,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:14 GMT
+ - Mon, 27 Mar 2023 06:44:03 GMT
expires:
- '-1'
pragma:
@@ -1306,7 +1357,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:15:51.479519"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:43:38.7837642"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1314,11 +1365,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1113'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:16 GMT
+ - Mon, 27 Mar 2023 06:44:08 GMT
expires:
- '-1'
pragma:
@@ -1372,11 +1423,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:22 GMT
+ - Mon, 27 Mar 2023 06:44:16 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/a9ffb5ae-e757-4fbd-906b-15ce60d97da6?monitor=true&api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/482ed897-6e14-46fb-a03c-97d9365ea231?monitor=true&api-version=2022-09-01
pragma:
- no-cache
server:
@@ -1406,10 +1457,10 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-storage/21.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/a9ffb5ae-e757-4fbd-906b-15ce60d97da6?monitor=true&api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/482ed897-6e14-46fb-a03c-97d9365ea231?monitor=true&api-version=2022-09-01
response:
body:
- string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cappstorage000004","name":"cappstorage000004","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2023-03-24T03:16:20.9123192Z","key2":"2023-03-24T03:16:20.9123192Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2023-03-24T03:16:20.9279458Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2023-03-24T03:16:20.9279458Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-03-24T03:16:20.8029872Z","primaryEndpoints":{"dfs":"https://cappstorage000004.dfs.core.windows.net/","web":"https://cappstorage000004.z13.web.core.windows.net/","blob":"https://cappstorage000004.blob.core.windows.net/","queue":"https://cappstorage000004.queue.core.windows.net/","table":"https://cappstorage000004.table.core.windows.net/","file":"https://cappstorage000004.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cappstorage000004-secondary.dfs.core.windows.net/","web":"https://cappstorage000004-secondary.z13.web.core.windows.net/","blob":"https://cappstorage000004-secondary.blob.core.windows.net/","queue":"https://cappstorage000004-secondary.queue.core.windows.net/","table":"https://cappstorage000004-secondary.table.core.windows.net/"}}}'
+ string: '{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cappstorage000004","name":"cappstorage000004","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2023-03-27T06:44:14.6812430Z","key2":"2023-03-27T06:44:14.6812430Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2023-03-27T06:44:14.6812430Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2023-03-27T06:44:14.6812430Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2023-03-27T06:44:14.5250046Z","primaryEndpoints":{"dfs":"https://cappstorage000004.dfs.core.windows.net/","web":"https://cappstorage000004.z13.web.core.windows.net/","blob":"https://cappstorage000004.blob.core.windows.net/","queue":"https://cappstorage000004.queue.core.windows.net/","table":"https://cappstorage000004.table.core.windows.net/","file":"https://cappstorage000004.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://cappstorage000004-secondary.dfs.core.windows.net/","web":"https://cappstorage000004-secondary.z13.web.core.windows.net/","blob":"https://cappstorage000004-secondary.blob.core.windows.net/","queue":"https://cappstorage000004-secondary.queue.core.windows.net/","table":"https://cappstorage000004-secondary.table.core.windows.net/"}}}'
headers:
cache-control:
- no-cache
@@ -1418,7 +1469,7 @@ interactions:
content-type:
- application/json
date:
- - Fri, 24 Mar 2023 03:16:40 GMT
+ - Mon, 27 Mar 2023 06:44:33 GMT
expires:
- '-1'
pragma:
@@ -1455,7 +1506,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:15:51.479519"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:43:38.7837642"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1463,11 +1514,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1113'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:42 GMT
+ - Mon, 27 Mar 2023 06:44:37 GMT
expires:
- '-1'
pragma:
@@ -1521,11 +1572,11 @@ interactions:
content-length:
- '0'
date:
- - Fri, 24 Mar 2023 03:16:45 GMT
+ - Mon, 27 Mar 2023 06:44:38 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -1557,10 +1608,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1572,7 +1623,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:47 GMT
+ - Mon, 27 Mar 2023 06:44:38 GMT
expires:
- '-1'
pragma:
@@ -1608,10 +1659,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1623,7 +1674,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:50 GMT
+ - Mon, 27 Mar 2023 06:44:42 GMT
expires:
- '-1'
pragma:
@@ -1659,10 +1710,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1674,7 +1725,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:53 GMT
+ - Mon, 27 Mar 2023 06:44:46 GMT
expires:
- '-1'
pragma:
@@ -1710,10 +1761,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1725,7 +1776,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:16:57 GMT
+ - Mon, 27 Mar 2023 06:44:49 GMT
expires:
- '-1'
pragma:
@@ -1761,10 +1812,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1776,7 +1827,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:00 GMT
+ - Mon, 27 Mar 2023 06:44:53 GMT
expires:
- '-1'
pragma:
@@ -1812,10 +1863,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1827,7 +1878,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:04 GMT
+ - Mon, 27 Mar 2023 06:44:57 GMT
expires:
- '-1'
pragma:
@@ -1863,10 +1914,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1878,7 +1929,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:08 GMT
+ - Mon, 27 Mar 2023 06:45:01 GMT
expires:
- '-1'
pragma:
@@ -1914,10 +1965,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1929,7 +1980,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:11 GMT
+ - Mon, 27 Mar 2023 06:45:03 GMT
expires:
- '-1'
pragma:
@@ -1965,10 +2016,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1980,7 +2031,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:15 GMT
+ - Mon, 27 Mar 2023 06:45:07 GMT
expires:
- '-1'
pragma:
@@ -2016,10 +2067,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2031,7 +2082,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:18 GMT
+ - Mon, 27 Mar 2023 06:45:11 GMT
expires:
- '-1'
pragma:
@@ -2067,10 +2118,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2082,7 +2133,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:22 GMT
+ - Mon, 27 Mar 2023 06:45:15 GMT
expires:
- '-1'
pragma:
@@ -2118,10 +2169,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2133,7 +2184,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:26 GMT
+ - Mon, 27 Mar 2023 06:45:19 GMT
expires:
- '-1'
pragma:
@@ -2169,10 +2220,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2184,7 +2235,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:32 GMT
+ - Mon, 27 Mar 2023 06:45:22 GMT
expires:
- '-1'
pragma:
@@ -2220,10 +2271,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2235,7 +2286,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:36 GMT
+ - Mon, 27 Mar 2023 06:45:26 GMT
expires:
- '-1'
pragma:
@@ -2271,10 +2322,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2286,7 +2337,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:40 GMT
+ - Mon, 27 Mar 2023 06:45:30 GMT
expires:
- '-1'
pragma:
@@ -2322,10 +2373,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2337,7 +2388,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:45 GMT
+ - Mon, 27 Mar 2023 06:45:34 GMT
expires:
- '-1'
pragma:
@@ -2373,10 +2424,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2388,7 +2439,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:47 GMT
+ - Mon, 27 Mar 2023 06:45:37 GMT
expires:
- '-1'
pragma:
@@ -2424,10 +2475,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2439,7 +2490,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:51 GMT
+ - Mon, 27 Mar 2023 06:45:40 GMT
expires:
- '-1'
pragma:
@@ -2475,10 +2526,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"InProgress","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2490,7 +2541,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:17:54 GMT
+ - Mon, 27 Mar 2023 06:45:44 GMT
expires:
- '-1'
pragma:
@@ -2526,61 +2577,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"InProgress","startTime":"2023-03-24T03:16:45.3423339"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Fri, 24 Mar 2023 03:17:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-destination --storage-account
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/844970aa-3530-4b71-9797-5ec54dfe57d0","name":"844970aa-3530-4b71-9797-5ec54dfe57d0","status":"Succeeded","startTime":"2023-03-24T03:16:45.3423339"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e200e650-6014-44f1-bf6a-f6472a4d82f1","name":"e200e650-6014-44f1-bf6a-f6472a4d82f1","status":"Succeeded","startTime":"2023-03-27T06:44:39.0696523"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2592,7 +2592,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:02 GMT
+ - Mon, 27 Mar 2023 06:45:48 GMT
expires:
- '-1'
pragma:
@@ -2631,7 +2631,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:16:43.9854943"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:44:37.7508842"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2639,11 +2639,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1032'
+ - '1033'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:04 GMT
+ - Mon, 27 Mar 2023 06:45:50 GMT
expires:
- '-1'
pragma:
@@ -2698,7 +2698,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:07 GMT
+ - Mon, 27 Mar 2023 06:45:57 GMT
expires:
- '-1'
pragma:
@@ -2732,9 +2732,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -2829,7 +2829,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:08 GMT
+ - Mon, 27 Mar 2023 06:45:59 GMT
expires:
- '-1'
pragma:
@@ -2862,7 +2862,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:16:43.9854943"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:44:37.7508842"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2870,11 +2870,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1032'
+ - '1033'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:10 GMT
+ - Mon, 27 Mar 2023 06:46:00 GMT
expires:
- '-1'
pragma:
@@ -2922,7 +2922,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:15 GMT
+ - Mon, 27 Mar 2023 06:46:01 GMT
expires:
- '-1'
pragma:
@@ -2959,7 +2959,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:16:43.9854943"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:44:37.7508842"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2967,11 +2967,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1032'
+ - '1033'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:18 GMT
+ - Mon, 27 Mar 2023 06:46:04 GMT
expires:
- '-1'
pragma:
@@ -2993,7 +2993,7 @@ interactions:
message: OK
- request:
body: '{"location": "eastus", "tags": null, "properties": {"appLogsConfiguration":
- {"destination": null}}}'
+ {"destination": null, "logAnalyticsConfiguration": null}}}'
headers:
Accept:
- '*/*'
@@ -3004,7 +3004,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '99'
+ - '134'
Content-Type:
- application/json
ParameterSetName:
@@ -3025,11 +3025,11 @@ interactions:
content-length:
- '0'
date:
- - Fri, 24 Mar 2023 03:18:19 GMT
+ - Mon, 27 Mar 2023 06:46:06 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -3061,10 +3061,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3076,7 +3076,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:20 GMT
+ - Mon, 27 Mar 2023 06:46:06 GMT
expires:
- '-1'
pragma:
@@ -3112,10 +3112,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3127,7 +3127,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:24 GMT
+ - Mon, 27 Mar 2023 06:46:10 GMT
expires:
- '-1'
pragma:
@@ -3163,10 +3163,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3178,7 +3178,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:27 GMT
+ - Mon, 27 Mar 2023 06:46:13 GMT
expires:
- '-1'
pragma:
@@ -3214,10 +3214,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3229,7 +3229,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:29 GMT
+ - Mon, 27 Mar 2023 06:46:17 GMT
expires:
- '-1'
pragma:
@@ -3265,10 +3265,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3280,7 +3280,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:32 GMT
+ - Mon, 27 Mar 2023 06:46:21 GMT
expires:
- '-1'
pragma:
@@ -3316,10 +3316,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3331,7 +3331,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:36 GMT
+ - Mon, 27 Mar 2023 06:46:24 GMT
expires:
- '-1'
pragma:
@@ -3367,10 +3367,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3382,7 +3382,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:40 GMT
+ - Mon, 27 Mar 2023 06:46:27 GMT
expires:
- '-1'
pragma:
@@ -3418,10 +3418,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3433,7 +3433,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:43 GMT
+ - Mon, 27 Mar 2023 06:46:31 GMT
expires:
- '-1'
pragma:
@@ -3469,10 +3469,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3484,7 +3484,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:46 GMT
+ - Mon, 27 Mar 2023 06:46:34 GMT
expires:
- '-1'
pragma:
@@ -3520,10 +3520,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3535,7 +3535,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:50 GMT
+ - Mon, 27 Mar 2023 06:46:37 GMT
expires:
- '-1'
pragma:
@@ -3571,10 +3571,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3586,7 +3586,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:53 GMT
+ - Mon, 27 Mar 2023 06:46:42 GMT
expires:
- '-1'
pragma:
@@ -3622,10 +3622,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3637,7 +3637,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:18:58 GMT
+ - Mon, 27 Mar 2023 06:46:45 GMT
expires:
- '-1'
pragma:
@@ -3673,10 +3673,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3688,7 +3688,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:01 GMT
+ - Mon, 27 Mar 2023 06:46:49 GMT
expires:
- '-1'
pragma:
@@ -3724,10 +3724,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3739,7 +3739,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:05 GMT
+ - Mon, 27 Mar 2023 06:46:53 GMT
expires:
- '-1'
pragma:
@@ -3775,10 +3775,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3790,7 +3790,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:09 GMT
+ - Mon, 27 Mar 2023 06:46:56 GMT
expires:
- '-1'
pragma:
@@ -3826,10 +3826,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3841,7 +3841,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:12 GMT
+ - Mon, 27 Mar 2023 06:47:00 GMT
expires:
- '-1'
pragma:
@@ -3877,10 +3877,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"InProgress","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"InProgress","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3892,7 +3892,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:17 GMT
+ - Mon, 27 Mar 2023 06:47:04 GMT
expires:
- '-1'
pragma:
@@ -3928,10 +3928,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/8b31ad25-1866-419f-9789-355184d45ace","name":"8b31ad25-1866-419f-9789-355184d45ace","status":"Succeeded","startTime":"2023-03-24T03:18:19.5444746"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/58e19977-cb97-40a7-b8c7-9f116cdbaee7","name":"58e19977-cb97-40a7-b8c7-9f116cdbaee7","status":"Succeeded","startTime":"2023-03-27T06:46:07.0268527"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3943,7 +3943,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:20 GMT
+ - Mon, 27 Mar 2023 06:47:06 GMT
expires:
- '-1'
pragma:
@@ -3982,7 +3982,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:18:19.4017125"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:46:05.7362037"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3990,11 +3990,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1003'
+ - '1004'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:23 GMT
+ - Mon, 27 Mar 2023 06:47:09 GMT
expires:
- '-1'
pragma:
@@ -4028,9 +4028,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -4125,7 +4125,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:23 GMT
+ - Mon, 27 Mar 2023 06:47:10 GMT
expires:
- '-1'
pragma:
@@ -4158,7 +4158,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:18:19.4017125"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:46:05.7362037"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4166,11 +4166,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1003'
+ - '1004'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:26 GMT
+ - Mon, 27 Mar 2023 06:47:12 GMT
expires:
- '-1'
pragma:
@@ -4209,7 +4209,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:18:19.4017125"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:46:05.7362037"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4217,11 +4217,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1003'
+ - '1004'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:28 GMT
+ - Mon, 27 Mar 2023 06:47:14 GMT
expires:
- '-1'
pragma:
@@ -4244,7 +4244,7 @@ interactions:
- request:
body: '{"location": "eastus", "tags": null, "properties": {"appLogsConfiguration":
{"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "59221c72-f7a9-4454-9288-df12e0de2011", "sharedKey": "ztW6z4kVYDX7EuNc0oX8+ahG4e2mlOjcYfGSj9ewfEngZYhVIvPsOEW8ZGib6ktdUwfnaJpjSJSaBfbtCI9EKA=="}}}}'
+ "4b5418a3-3db1-4a02-9a96-a676dc7b3657", "sharedKey": "oPh4kfwHK0tFsKX0gM3ZBbI3pcFYMZlI0HIMr++Ccfo23lAw6i4Ng5/VFe2num1aCQvdJYaUyXDQ2xFIOgmKKQ=="}}}}'
headers:
Accept:
- '*/*'
@@ -4276,11 +4276,11 @@ interactions:
content-length:
- '0'
date:
- - Fri, 24 Mar 2023 03:19:30 GMT
+ - Mon, 27 Mar 2023 06:47:16 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -4312,10 +4312,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4323,62 +4323,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Fri, 24 Mar 2023 03:19:32 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key --logs-destination
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:37 GMT
+ - Mon, 27 Mar 2023 06:47:17 GMT
expires:
- '-1'
pragma:
@@ -4414,10 +4363,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4425,11 +4374,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:39 GMT
+ - Mon, 27 Mar 2023 06:47:21 GMT
expires:
- '-1'
pragma:
@@ -4465,10 +4414,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4476,11 +4425,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:44 GMT
+ - Mon, 27 Mar 2023 06:47:24 GMT
expires:
- '-1'
pragma:
@@ -4516,10 +4465,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4527,11 +4476,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:47 GMT
+ - Mon, 27 Mar 2023 06:47:29 GMT
expires:
- '-1'
pragma:
@@ -4567,10 +4516,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4578,11 +4527,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:50 GMT
+ - Mon, 27 Mar 2023 06:47:33 GMT
expires:
- '-1'
pragma:
@@ -4618,10 +4567,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4629,11 +4578,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:54 GMT
+ - Mon, 27 Mar 2023 06:47:37 GMT
expires:
- '-1'
pragma:
@@ -4669,10 +4618,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4680,11 +4629,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:19:58 GMT
+ - Mon, 27 Mar 2023 06:47:40 GMT
expires:
- '-1'
pragma:
@@ -4720,10 +4669,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4731,11 +4680,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:02 GMT
+ - Mon, 27 Mar 2023 06:47:43 GMT
expires:
- '-1'
pragma:
@@ -4771,10 +4720,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4782,11 +4731,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:06 GMT
+ - Mon, 27 Mar 2023 06:47:47 GMT
expires:
- '-1'
pragma:
@@ -4822,10 +4771,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4833,11 +4782,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:09 GMT
+ - Mon, 27 Mar 2023 06:47:50 GMT
expires:
- '-1'
pragma:
@@ -4873,10 +4822,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4884,11 +4833,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:13 GMT
+ - Mon, 27 Mar 2023 06:47:54 GMT
expires:
- '-1'
pragma:
@@ -4924,10 +4873,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4935,11 +4884,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:17 GMT
+ - Mon, 27 Mar 2023 06:47:57 GMT
expires:
- '-1'
pragma:
@@ -4975,10 +4924,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4986,11 +4935,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:21 GMT
+ - Mon, 27 Mar 2023 06:48:00 GMT
expires:
- '-1'
pragma:
@@ -5026,10 +4975,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5037,11 +4986,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:24 GMT
+ - Mon, 27 Mar 2023 06:48:04 GMT
expires:
- '-1'
pragma:
@@ -5077,10 +5026,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5088,11 +5037,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:27 GMT
+ - Mon, 27 Mar 2023 06:48:08 GMT
expires:
- '-1'
pragma:
@@ -5128,10 +5077,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"InProgress","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"InProgress","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5139,11 +5088,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:31 GMT
+ - Mon, 27 Mar 2023 06:48:11 GMT
expires:
- '-1'
pragma:
@@ -5179,10 +5128,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/7be2f09f-a146-48c5-9cbb-5e72fc8d104f","name":"7be2f09f-a146-48c5-9cbb-5e72fc8d104f","status":"Succeeded","startTime":"2023-03-24T03:19:31.3175668"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","name":"bb91c0ed-4dde-48b2-a7b4-26bd3b6b4933","status":"Succeeded","startTime":"2023-03-27T06:47:17.219985"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5190,11 +5139,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '282'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:34 GMT
+ - Mon, 27 Mar 2023 06:48:15 GMT
expires:
- '-1'
pragma:
@@ -5233,7 +5182,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:19:29.9817923"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:47:15.8990054"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5241,11 +5190,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1114'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:37 GMT
+ - Mon, 27 Mar 2023 06:48:18 GMT
expires:
- '-1'
pragma:
@@ -5279,9 +5228,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5376,7 +5325,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:37 GMT
+ - Mon, 27 Mar 2023 06:48:18 GMT
expires:
- '-1'
pragma:
@@ -5409,7 +5358,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:19:29.9817923"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"59221c72-f7a9-4454-9288-df12e0de2011"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:47:15.8990054"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4b5418a3-3db1-4a02-9a96-a676dc7b3657"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5417,11 +5366,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1114'
+ - '1115'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:39 GMT
+ - Mon, 27 Mar 2023 06:48:21 GMT
expires:
- '-1'
pragma:
@@ -5455,9 +5404,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination --storage-account
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5547,14 +5496,12 @@ interactions:
headers:
cache-control:
- no-cache
- connection:
- - close
content-length:
- '9689'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:40 GMT
+ - Mon, 27 Mar 2023 06:48:21 GMT
expires:
- '-1'
pragma:
@@ -5582,9 +5529,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination --storage-account
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5679,7 +5626,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:39 GMT
+ - Mon, 27 Mar 2023 06:48:21 GMT
expires:
- '-1'
pragma:
@@ -5707,9 +5654,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination --storage-account
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5804,7 +5751,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:40 GMT
+ - Mon, 27 Mar 2023 06:48:22 GMT
expires:
- '-1'
pragma:
@@ -5832,9 +5779,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination --storage-account
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5929,7 +5876,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:40 GMT
+ - Mon, 27 Mar 2023 06:48:23 GMT
expires:
- '-1'
pragma:
@@ -5969,21 +5916,21 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:20:42.2671898Z"},"properties":{"provisioningState":"Updating","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:48:24.4440647Z"},"properties":{"provisioningState":"Updating","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1032'
+ - '1033'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:45 GMT
+ - Mon, 27 Mar 2023 06:48:25 GMT
expires:
- '-1'
pragma:
@@ -6019,61 +5966,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Fri, 24 Mar 2023 03:20:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-destination --storage-account
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6085,7 +5981,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:50 GMT
+ - Mon, 27 Mar 2023 06:48:27 GMT
expires:
- '-1'
pragma:
@@ -6121,10 +6017,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6136,7 +6032,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:53 GMT
+ - Mon, 27 Mar 2023 06:48:31 GMT
expires:
- '-1'
pragma:
@@ -6172,10 +6068,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6187,7 +6083,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:20:57 GMT
+ - Mon, 27 Mar 2023 06:48:33 GMT
expires:
- '-1'
pragma:
@@ -6223,10 +6119,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6238,7 +6134,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:01 GMT
+ - Mon, 27 Mar 2023 06:48:36 GMT
expires:
- '-1'
pragma:
@@ -6274,10 +6170,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6289,7 +6185,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:05 GMT
+ - Mon, 27 Mar 2023 06:48:39 GMT
expires:
- '-1'
pragma:
@@ -6325,10 +6221,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6340,7 +6236,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:08 GMT
+ - Mon, 27 Mar 2023 06:48:43 GMT
expires:
- '-1'
pragma:
@@ -6376,10 +6272,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6391,7 +6287,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:13 GMT
+ - Mon, 27 Mar 2023 06:48:47 GMT
expires:
- '-1'
pragma:
@@ -6427,10 +6323,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6442,7 +6338,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:15 GMT
+ - Mon, 27 Mar 2023 06:48:51 GMT
expires:
- '-1'
pragma:
@@ -6451,61 +6347,8 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-destination --storage-account
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Fri, 24 Mar 2023 03:21:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
x-powered-by:
@@ -6529,10 +6372,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6544,7 +6387,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:23 GMT
+ - Mon, 27 Mar 2023 06:48:53 GMT
expires:
- '-1'
pragma:
@@ -6580,10 +6423,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6595,7 +6438,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:26 GMT
+ - Mon, 27 Mar 2023 06:48:57 GMT
expires:
- '-1'
pragma:
@@ -6631,10 +6474,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6646,7 +6489,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:30 GMT
+ - Mon, 27 Mar 2023 06:49:02 GMT
expires:
- '-1'
pragma:
@@ -6682,10 +6525,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6697,7 +6540,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:35 GMT
+ - Mon, 27 Mar 2023 06:49:06 GMT
expires:
- '-1'
pragma:
@@ -6733,10 +6576,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6748,7 +6591,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:37 GMT
+ - Mon, 27 Mar 2023 06:49:09 GMT
expires:
- '-1'
pragma:
@@ -6784,10 +6627,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6799,7 +6642,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:41 GMT
+ - Mon, 27 Mar 2023 06:49:13 GMT
expires:
- '-1'
pragma:
@@ -6835,10 +6678,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6850,7 +6693,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:44 GMT
+ - Mon, 27 Mar 2023 06:49:16 GMT
expires:
- '-1'
pragma:
@@ -6886,10 +6729,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"InProgress","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"InProgress","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6901,7 +6744,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:49 GMT
+ - Mon, 27 Mar 2023 06:49:19 GMT
expires:
- '-1'
pragma:
@@ -6937,10 +6780,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/e620c13d-be48-41cf-96fc-2d527530b242","name":"e620c13d-be48-41cf-96fc-2d527530b242","status":"Succeeded","startTime":"2023-03-24T03:20:43.5506634"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c79a9ad6-5525-48b6-9c19-aacb547eba39","name":"c79a9ad6-5525-48b6-9c19-aacb547eba39","status":"Succeeded","startTime":"2023-03-27T06:48:24.6066532"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6952,7 +6795,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:53 GMT
+ - Mon, 27 Mar 2023 06:49:23 GMT
expires:
- '-1'
pragma:
@@ -6991,7 +6834,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:20:42.2671898"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:48:24.4440647"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6999,11 +6842,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1032'
+ - '1033'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:54 GMT
+ - Mon, 27 Mar 2023 06:49:24 GMT
expires:
- '-1'
pragma:
@@ -7058,7 +6901,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:59 GMT
+ - Mon, 27 Mar 2023 06:49:29 GMT
expires:
- '-1'
pragma:
@@ -7092,9 +6935,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7189,7 +7032,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:21:59 GMT
+ - Mon, 27 Mar 2023 06:49:30 GMT
expires:
- '-1'
pragma:
@@ -7222,7 +7065,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:20:42.2671898"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:48:24.4440647"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{"destination":"azure-monitor"},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7230,11 +7073,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1032'
+ - '1033'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:03 GMT
+ - Mon, 27 Mar 2023 06:49:33 GMT
expires:
- '-1'
pragma:
@@ -7282,7 +7125,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:04 GMT
+ - Mon, 27 Mar 2023 06:49:35 GMT
expires:
- '-1'
pragma:
@@ -7314,9 +7157,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7411,7 +7254,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:05 GMT
+ - Mon, 27 Mar 2023 06:49:35 GMT
expires:
- '-1'
pragma:
@@ -7439,9 +7282,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7536,7 +7379,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:04 GMT
+ - Mon, 27 Mar 2023 06:49:36 GMT
expires:
- '-1'
pragma:
@@ -7564,9 +7407,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7661,7 +7504,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:05 GMT
+ - Mon, 27 Mar 2023 06:49:36 GMT
expires:
- '-1'
pragma:
@@ -7689,9 +7532,9 @@ interactions:
ParameterSetName:
- -g -n --logs-destination
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7786,7 +7629,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:05 GMT
+ - Mon, 27 Mar 2023 06:49:36 GMT
expires:
- '-1'
pragma:
@@ -7826,21 +7669,21 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:22:07.1300019Z"},"properties":{"provisioningState":"Updating","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:39.3806636Z"},"properties":{"provisioningState":"Updating","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1003'
+ - '1004'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:09 GMT
+ - Mon, 27 Mar 2023 06:49:41 GMT
expires:
- '-1'
pragma:
@@ -7854,7 +7697,7 @@ interactions:
x-ms-async-operation-timeout:
- PT15M
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '98'
+ - '99'
x-powered-by:
- ASP.NET
status:
@@ -7876,10 +7719,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7887,11 +7730,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:09 GMT
+ - Mon, 27 Mar 2023 06:49:43 GMT
expires:
- '-1'
pragma:
@@ -7927,10 +7770,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7938,11 +7781,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:11 GMT
+ - Mon, 27 Mar 2023 06:49:47 GMT
expires:
- '-1'
pragma:
@@ -7978,10 +7821,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7989,11 +7832,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:16 GMT
+ - Mon, 27 Mar 2023 06:49:51 GMT
expires:
- '-1'
pragma:
@@ -8029,10 +7872,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8040,11 +7883,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:19 GMT
+ - Mon, 27 Mar 2023 06:49:53 GMT
expires:
- '-1'
pragma:
@@ -8080,10 +7923,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8091,11 +7934,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:22 GMT
+ - Mon, 27 Mar 2023 06:49:55 GMT
expires:
- '-1'
pragma:
@@ -8131,10 +7974,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8142,11 +7985,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:26 GMT
+ - Mon, 27 Mar 2023 06:49:59 GMT
expires:
- '-1'
pragma:
@@ -8182,10 +8025,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8193,11 +8036,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:30 GMT
+ - Mon, 27 Mar 2023 06:50:03 GMT
expires:
- '-1'
pragma:
@@ -8233,10 +8076,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8244,11 +8087,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:34 GMT
+ - Mon, 27 Mar 2023 06:50:05 GMT
expires:
- '-1'
pragma:
@@ -8284,10 +8127,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8295,11 +8138,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:38 GMT
+ - Mon, 27 Mar 2023 06:50:08 GMT
expires:
- '-1'
pragma:
@@ -8335,10 +8178,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8346,11 +8189,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:42 GMT
+ - Mon, 27 Mar 2023 06:50:12 GMT
expires:
- '-1'
pragma:
@@ -8386,10 +8229,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8397,11 +8240,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:46 GMT
+ - Mon, 27 Mar 2023 06:50:16 GMT
expires:
- '-1'
pragma:
@@ -8437,10 +8280,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8448,11 +8291,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:49 GMT
+ - Mon, 27 Mar 2023 06:50:20 GMT
expires:
- '-1'
pragma:
@@ -8488,10 +8331,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8499,11 +8342,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:53 GMT
+ - Mon, 27 Mar 2023 06:50:24 GMT
expires:
- '-1'
pragma:
@@ -8539,10 +8382,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8550,11 +8393,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:22:56 GMT
+ - Mon, 27 Mar 2023 06:50:26 GMT
expires:
- '-1'
pragma:
@@ -8590,10 +8433,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8601,11 +8444,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:00 GMT
+ - Mon, 27 Mar 2023 06:50:31 GMT
expires:
- '-1'
pragma:
@@ -8641,10 +8484,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8652,11 +8495,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:03 GMT
+ - Mon, 27 Mar 2023 06:50:33 GMT
expires:
- '-1'
pragma:
@@ -8692,10 +8535,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8703,11 +8546,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:07 GMT
+ - Mon, 27 Mar 2023 06:50:37 GMT
expires:
- '-1'
pragma:
@@ -8743,10 +8586,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"InProgress","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"InProgress","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8754,11 +8597,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '283'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:11 GMT
+ - Mon, 27 Mar 2023 06:50:39 GMT
expires:
- '-1'
pragma:
@@ -8794,10 +8637,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a82ed2aa-d439-4a3d-b35e-2002883fdb17","name":"a82ed2aa-d439-4a3d-b35e-2002883fdb17","status":"Succeeded","startTime":"2023-03-24T03:22:07.311901"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/38bf3aab-c816-4918-b3d6-8c0a961c1c07","name":"38bf3aab-c816-4918-b3d6-8c0a961c1c07","status":"Succeeded","startTime":"2023-03-27T06:49:40.7734257"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8805,11 +8648,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '282'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:15 GMT
+ - Mon, 27 Mar 2023 06:50:43 GMT
expires:
- '-1'
pragma:
@@ -8848,7 +8691,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:22:07.1300019"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:39.3806636"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8856,11 +8699,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1003'
+ - '1004'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:17 GMT
+ - Mon, 27 Mar 2023 06:50:45 GMT
expires:
- '-1'
pragma:
@@ -8894,9 +8737,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8991,7 +8834,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:17 GMT
+ - Mon, 27 Mar 2023 06:50:47 GMT
expires:
- '-1'
pragma:
@@ -9024,7 +8867,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-24T03:15:51.479519","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-24T03:22:07.1300019"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelywater-34279d45.eastus.azurecontainerapps.io","staticIp":"40.88.49.35","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:43:38.7837642","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:39.3806636"},"properties":{"provisioningState":"Succeeded","defaultDomain":"orangemoss-f88044b0.eastus.azurecontainerapps.io","staticIp":"40.76.160.11","appLogsConfiguration":{},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -9032,11 +8875,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1003'
+ - '1004'
content-type:
- application/json; charset=utf-8
date:
- - Fri, 24 Mar 2023 03:23:19 GMT
+ - Mon, 27 Mar 2023 06:50:49 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_update_custom_domains.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_update_custom_domains.yaml
new file mode 100644
index 00000000000..a07b13382c6
--- /dev/null
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_update_custom_domains.yaml
@@ -0,0 +1,5794 @@
+interactions:
+- request:
+ body: '{"location": "eastus", "properties": {"retentionInDays": 30, "sku": {"name":
+ "PerGB2018"}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '91'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-27T06:49:16.6985896Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:49:16.6985896Z","modifiedDate":"2023-03-27T06:49:16.6985896Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '851'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:18 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-27T06:49:16.6985896Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:49:16.6985896Z","modifiedDate":"2023-03-27T06:49:16.6985896Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003","name":"containerapp-env000003","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '851'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - monitor log-analytics workspace get-shared-keys
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000003/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: '{"primarySharedKey":"AUbpQzOULI6Ep1BANLweK0wMT7esWg5QgdfHc+GazJlPeE8GUlR7UTsGcaWPnifU5PE51WmjWnvXq6TfDTejsw==","secondarySharedKey":"ZCAbMom9xQIkHsd2mRXz+uuPuw6GrOWVHneeSRYi4Dd/OelH6T+QeKDodWMV1Mi8o8Otu6ODplvOf5Favxh6XA=="}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
+ {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration":
+ {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
+ "75cc45ad-bd14-40e3-969b-2ded6a9335a5", "sharedKey": "AUbpQzOULI6Ep1BANLweK0wMT7esWg5QgdfHc+GazJlPeE8GUlR7UTsGcaWPnifU5PE51WmjWnvXq6TfDTejsw=="}},
+ "customDomainConfiguration": null, "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '452'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:27.0814847Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1114'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","name":"dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","status":"InProgress","startTime":"2023-03-27T06:49:28.1999984"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","name":"dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","status":"InProgress","startTime":"2023-03-27T06:49:28.1999984"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","name":"dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","status":"InProgress","startTime":"2023-03-27T06:49:28.1999984"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","name":"dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","status":"InProgress","startTime":"2023-03-27T06:49:28.1999984"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","name":"dd45be8f-9c3e-490d-88c5-2b6503f7ffd2","status":"Succeeded","startTime":"2023-03-27T06:49:28.1999984"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '283'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:27.0814847"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1114'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:27.0814847"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1114'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:49:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "containerapp-env000002.com"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '38'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DomainRegistration/checkDomainAvailability?api-version=2022-03-01
+ response:
+ body:
+ string: '{"name":"containerapp-env000002.com","available":true,"domainType":"Regular"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '77'
+ content-type:
+ - application/json
+ date:
+ - Mon, 27 Mar 2023 06:49:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"includePrivacy": true, "forTransfer": false}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '46'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-web/7.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DomainRegistration/topLevelDomains/com/listAgreements?api-version=2022-03-01
+ response:
+ body:
+ string: "{\"value\":[{\"agreementKey\":\"DNRA\",\"title\":\"Domain Registration
+ Agreement\",\"content\":\"\\n\\n\\n
\\n
\\n Azure
+ - DOMAIN NAME REGISTRATION AGREEMENT\\n
\\n
\\n Last Revised: 4/5/2022\\n
+ \
\\n
PLEASE READ THIS AGREEMENT CAREFULLY,
+ AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS AND REMEDIES.\\n\\n
+ \
\\n
1. OVERVIEW\\n\\n
This
+ Domain Name Registration Agreement (this "Agreement") is
+ entered into by and between Microsoft Azure ("Azure") and you, and
+ is made effective as of the date of electronic acceptance. This Agreement
+ sets forth the terms and conditions of your use of Azure's Domain Name Registration
+ services (the "Domain Name Registration Services" or the
+ "Services"). The terms "we", "us" or
+ "our" shall refer to Azure. The terms "you", "your",
+ "User" or "customer" shall refer to any individual or
+ entity who accepts this Agreement. Unless otherwise specified, nothing in
+ this Agreement shall be deemed to confer any third-party rights or benefits.
\\n
+ \
Your electronic acceptance of this Agreement signifies that you have
+ read, understand, acknowledge and agree to be bound by this Agreement, which
+ incorporates by reference each of (i) Azure\u2019s Universal
+ Terms of Service Agreement ("UTOS"), (ii) all agreements,
+ guidelines, policies, practices, procedures, registration requirements or
+ operational standards of the top-level domain ("TLD") in
+ which you register any domain (\u201CRegistry Policies\u201D), and
+ (iii) any plan limits, product disclaimers or other restrictions presented
+ to you on the Domain Name Registration Services landing page of the Azure
+ website (this \u201CSite\u201D).
\\n
TO LINK TO
+ AND REVIEW THE REGISTRY POLICIES FOR THE TLD IN WHICH YOU WISH TO REGISTER
+ A DOMAIN NAME, PLEASE CLICK HERE.
\\n
+ \
You acknowledge and agree that (i) Azure, in its sole and absolute
+ discretion, may change or modify this Agreement, and any policies or agreements
+ which are incorporated herein, at any time, and such changes or modifications
+ shall be effective immediately upon posting to this Site, and (ii) your use
+ of this Site or the Services found at this Site after such changes or modifications
+ have been made shall constitute your acceptance of this Agreement as last
+ revised. If you do not agree to be bound by this Agreement as last revised,
+ do not use (or continue to use) this Site or the Services found at this Site.
+ \ In addition, Azure may occasionally notify you of changes or modifications
+ to this Agreement by email. It is therefore very important that you keep
+ your shopper account (\u201CShopper Account\u201D) information, including
+ your email address, current. Azure assumes no liability or responsibility
+ for your failure to receive an email notification if such failure results
+ from an inaccurate or out-of-date email address. Azure is an Internet Corporation
+ for Assigned Names and Numbers ("ICANN") accredited registrar.
+ \ \\r
\\n
You acknowledge and agree that Azure may modify this Agreement
+ in order to comply with any terms and conditions set forth by (i) ICANN and/or
+ (ii) the registry applicable to the TLD or country code top level domain ("ccTLD")
+ in question. The term \u201CRegistry Service Provider\u201D shall refer to
+ the service provider responsible for operating and managing the registry services
+ on behalf of the Registry Operator for its applicable TLD or ccTLD. To identify
+ the sponsoring registrar, click here.
\\n\\n
+ \
2. PROVISIONS SPECIFIC TO ALL REGISTRATIONS
+ \ \\n\\n
Unless otherwise noted, the provisions below
+ in this Section 2 are generally applicable to all TLDs that we offer. Special
+ provisions specific to any TLD or ccTLD (those in addition to posted Registry
+ Policies) are identified elsewhere below in this Agreement. \\r
\\n
- Registry
+ Policies. You agree to be bound by all Registry Policies (defined
+ above in this Agreement) applicable to your domain name registration (at any
+ level). IT IS YOUR RESPONSIBILITY TO VISIT THE APPLICABLE TLD SITE AND READ
+ AND REVIEW ALL APPLICABLE REGISTRY POLICIES PRIOR TO YOUR REGISTRATION IN
+ THE TLD. REGISTRY POLICIES FOR EACH TLD CAN BE FOUND BY VISITING THE CORRESPONDING
+ TLD LINK LISTEDHERE.
+ Notwithstanding anything in this Agreement to the contrary, the Registry Operator
+ of the TLD in which the domain name registration is made is and shall be an
+ intended third party beneficiary of this Agreement. As such the parties to
+ this agreement acknowledge and agree that the third party beneficiary rights
+ of the Registry Operator have vested and that the Registry Operator has relied
+ on its third party beneficiary rights under this Agreement in agreeing to
+ Azure being a registrar for the respective TLD. The third party beneficiary
+ rights of the Registry Operator will survive any termination of this Agreement.
+ \ \\n\\n - Registration Requirements. To
+ the extent any TLD or ccTLD requires you meet eligibility (e.g., residency
+ for .JP, .EU, etc.), validation (e.g., DNS validation) or other authentication
+ requirements as a condition to registering a domain name in the TLD, you agree
+ that by submitting an application or registering or renewing your domain name,
+ you represent and warrant that: (a) all information provided to register or
+ renew the domain name (including all supporting documents, if any) is true,
+ complete and correct, and is not misleading in any way, and the application
+ is made in good faith; (b) you meet, and will continue to meet, the eligibility
+ criteria prescribed in the Registry Policies for the applicable TLD for the
+ duration of the domain name registration; (c) you have not previously submitted
+ an application for the domain name with another registrar using the same eligibility
+ criteria, and the other registrar has rejected the application (if applicable);
+ (d) you acknowledge and agree that even if the domain name is accepted for
+ registration, your entitlement to register the domain name may be challenged
+ by others who claim to have an entitlement to the domain name; and (e) you
+ acknowledge and agree that the Registry or the registrar can cancel the registration
+ of the domain name if any of the warranties required are found to be untrue,
+ incomplete, incorrect or misleading.
\\n - Ownership.
+ You acknowledge and agree that registration of a domain name does not create
+ any proprietary right for you, the registrar, or any other person in the name
+ used as a domain name or the domain name registration and that the entry of
+ a domain name in the Registry shall not be construed as evidence or ownership
+ of the domain name registered as a domain name. You shall not in any way transfer
+ or purport to transfer a proprietary right in any domain name registration
+ or grant or purport to grant as security or in any other manner encumber or
+ purport to encumber a domain name registration.
\\r\\n - ICANN
+ Requirements. You agree to comply with the ICANN requirements, standards,
+ policies, procedures, and practices for which each applicable Registry Operator
+ has monitoring responsibility in accordance with the Registry Agreement between
+ ICANN and itself or any other arrangement with ICANN. For additional ICANN-related
+ helpful information, please see ICANN
+ Education Materials and ICANN
+ Benefits and Responsibilities.
\\r\\n - Indemnification
+ of Registry. You agree to indemnify, defend and hold harmless (within
+ 30 days of demand) the Registry Operator and Registry Service Provider and
+ their subcontractors, subsidiaries, affiliates, divisions, shareholders, directors,
+ officers, employees, accountants, attorneys, insurers, agents, predecessors,
+ successors and assigns, from and against any and all claims, demands, damages,
+ losses, costs, expenses, causes of action or other liabilities of any kind,
+ whether known or unknown, including reasonable legal and attorney\u2019s fees
+ and expenses, in any way arising out of, relating to, or otherwise in connection
+ with the your domain name registration, including, without limitation, the
+ use, registration, extension, renewal, deletion, and/or transfer thereof and/or
+ the violation of any applicable terms or conditions governing the registration.
+ You shall not enter into any settlement or compromise of any such indemnifiable
+ claim without Registrar\u2019s or Registry Operator\u2019s prior written consent,
+ which consent shall not be unreasonably withheld, and you agree that these
+ indemnification obligations shall survive the termination or expiration of
+ the Agreement for any reason. IN NO EVENT SHALL THE REGISTRY OPERATOR BE
+ LIABLE TO YOU OR ANY OTHER PERSON FOR ANY DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL,
+ SPECIAL, EXEMPLARY OR PUNITIVE DAMAGES, INCLUDING LOSS OF PROFIT OR GOODWILL,
+ FOR ANY MATTER, WHETHER SUCH LIABILITY IS ASSERTED ON THE BASIS OF CONTRACT,
+ TORT (INCLUDING NEGLIGENCE), BREACH OF WARRANTIES, EITHER EXPRESS OR IMPLIED,
+ ANY BREACH OF THIS AGREEMENT OR ITS INCORPORATED AGREEMENTS AND POLICIES YOUR
+ INABILITY TO USE THE DOMAIN NAME, YOUR LOSS OF DATA OR FILES OR OTHERWISE,
+ EVEN IF THE REGISTRY OPERATOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+ DAMAGES.
\\r\\n - Regulated TLDs. For
+ domain name registration in any \u201CRegulated\u201D TLD, you acknowledge
+ and agree your registration is subject to the following additional requirements:
+ (a) comply with all applicable laws, including those that relate to privacy,
+ data collection, consumer protection (including in relation to misleading
+ and deceptive conduct), fair lending, debt collection, organic farming, disclosure
+ of data, and financial disclosures; (b) if you collect and maintain sensitive
+ health and financial data you must implement reasonable and appropriate security
+ measures commensurate with the offering of those services, as defined by applicable
+ law. Regulated TLDs include: .games, .juegos, .school, .schule, .toys,
+ .eco, .care, .diet, .fitness, .health, .clinic, .dental, .healthcare, .capital,
+ .cash, .broker, .claims, .exchange, .finance, .financial, .fund, .investments,
+ .lease, .loans, .market, .money, .trading, .credit, .insure, .tax, .mortgage,
+ .degree, .mba, .audio, .book, .broadway, .movie, .music, .software, .fashion,
+ .video, .app, .art, .band, .cloud, .data, .digital, .fan, .free, .gratis,
+ .discount, .sale, .media, .news, .online, .pictures, .radio, .show, .theater,
+ .tours, .accountants, .architect, .associates, .broker, .legal, .realty, .vet,
+ .engineering, .law, .limited, .show; .theater; .town, .city, .reise,
+ and .reisen
\\r\\n - Highly Regulated
+ TLDs. In addition to the requirements for Regulated TLDs, domain
+ name registration in any Highly-Regulated TLD is subject to the following
+ requirements: (a) you will provide administrative contact information, which
+ must be kept up\u2010to\u2010date, for the notification of complaints or reports
+ of registration abuse, as well as the contact details of the relevant regulatory,
+ or Industry self\u2010regulatory, bodies in their main place of business;
+ (b) you represent that you possess any necessary authorizations, charters,
+ licenses and/or other related credentials for participation in the sector
+ associated with such Highly\u2010regulated TLD; and (c) you will report any
+ material changes to the validity of you authorizations, charters, licenses
+ and/or other related credentials for participation in the sector associated
+ with the Highly\u2010regulated TLD to ensure you continue to conform to the
+ appropriate regulations and licensing requirements and generally conduct your
+ activities in the interests of the consumers they serve. Highly Regulated
+ TLDs include: _.abogado, .attorney, .bank, .bet, .bingo, .casino .charity
+ (and IDN equivalent), .cpa, .corp, creditcard, .creditunion .dds, .dentist,
+ .doctor, .fail, .gmbh, .gripe, .hospital, .inc, .insurance, .lawyer, .lifeinsurance,
+ .llc, .llp, .ltda, .medical, .mutuelle, .pharmacy, .poker, .university, .sarl,
+ .spreadbetting, .srl, .sucks, .surgery .university, .vermogensberater, .vesicherung,
+ and .wtf.\\r\\n
\\r\\nFor .doctor, registrants who
+ hold themselves out to be licensed medical practitioners must be able to demonstrate
+ to the Registrar and Registry, upon request, that they hold the applicable
+ license. \\n\\n - Special Safeguard TLDs.
+ In addition to the requirements for Regulated and Highly-Regulated TLDs, by
+ registering a domain name in any \u201CSpecial-Safeguard\u201D TLD, you agree
+ to take reasonable steps to avoid misrepresenting or falsely implying that
+ you or your business is affiliated with, sponsored or endorsed by one or more
+ country's or government's military forces if such affiliation, sponsorship
+ or endorsement does not exist. Special Safeguard TLDs include: .army,
+ .navy, .airforce
\\n - Third Party Beneficiary.
+ Notwithstanding anything in this Agreement to the contrary, the Registry Operator
+ for any TLD in which your register a domain name is and shall be an intended
+ third party beneficiary of this Agreement. As such the parties to this agreement
+ acknowledge and agree that the third party beneficiary rights of the Registry
+ Operator have vested and that the Registry Operator has relied on its third
+ party beneficiary rights under this Agreement in agreeing to Azure being a
+ registrar for the TLD. Third party beneficiary rights of the Registry Operator
+ shall survive any termination of this Agreement.
\\r\\n - Variable
+ and Non-Uniform Pricing. You acknowledge, understand and agree that
+ certain domain names in certain TLDs are established by Registry Policies
+ to be variably priced (i.e., standard v. premium names) and/or may have non-uniform
+ renewal registration pricing (such that the Fee for a domain name registration
+ renewal may differ from other domain names in the same TLD, e.g., renewal
+ registration for one domain may be $100.00 and $33.00 for a different domain
+ name).
\\r\\n
3. FEES AND PAYMENTS\\n\\n
+ \
(A) GENERAL TERMS, INCLUDING AUTOMATIC RENEWAL TERMS
\\n
You
+ agree to pay any and all prices and fees due for Services purchased or obtained
+ at this Site at the time you order the Services. Azure expressly reserves
+ the right to change or modify its prices and fees at any time, and such changes
+ or modifications shall be posted online at this Site and effective immediately
+ without need for further notice to you. If you have purchased or obtained
+ Services for a period of months or years, changes or modifications in prices
+ and fees shall be effective when the Services in question come up for renewal
+ as further described below. \\r
\\n
Unless otherwise specifically noted
+ (for reasons such as those highlighted in Section 2(x) above), the renewal
+ price for any domain name in any TLD will be the same as the list (non-sale)
+ price shown when you search for and select a domain, and again in the cart
+ prior to purchase. For example, if the list price is $9.99, and a different
+ renewal price is not specifically identified, then the renewal price is also
+ $9.99. Likewise, if a domain name has a sale price of $8.99, with the list
+ (non-sale) price shown (as a strike-through) at $9.99, the renewal price will
+ be $9.99*. \\r
\\n
* Renewal price subject to change prior to
+ actual date of renewal. \\r
\\n
For all other terms and conditions
+ relating to fees, payment, refund and billing, etc. applicable to the Services
+ offered under the scope of this Agreement, please refer to the \u201CFees
+ and Payments\u201D section of our Universal
+ Terms of Service. \\r
\\n\\n
(B) DOMAIN NAME
+ RENEWAL TERMS
\\n
When you register a domain name, you will
+ have the following renewal options:
\\n
- Automatic Renewal.
+ Automatic Renewal is the default setting. Domain names will automatically
+ renew, for a period equivalent to the length of your original domain name
+ registration, and payment will be taken from the Payment Method you have on
+ file with Azure, at Azure's then current rates. Thus, if you have chosen to
+ register your domain name for one (1) year, Azure will automatically renew
+ it for one (1) year. If you have chosen to register your domain name for two
+ (2) years, Azure will automatically renew it for two (2) years, and so on.
+ If you wish to change your automatic renewal term to a different period from
+ your original term, as of 16 July 2020, you may manually renew the domain
+ registration to establish a new default automatic renewal term for the domain.
\\n\\n
+ \ - Manual Renewal. If you have elected to turn off automatic
+ renewal and cancel the product (i.e., cancel the domain name registration)
+ effective at expiration of the then current term, you may nonetheless elect
+ to manually renew the domain name at anytime prior to its expiration date
+ by logging into your Account
+ Manager and manually implementing the renewal or by calling customer service
+ (should you in fact want the domain name to be renewed). If you fail to manually
+ implement the renewal before the expiration date, the domain name will be
+ cancelled and you will no longer have use of that name.
\\n
+ \
All renewals will be subject to the terms of this Agreement, as it
+ may be amended from time to time, and you acknowledge and agree to be bound
+ by the terms of this Agreement (as amended) for all renewed domains. Domain
+ name renewals will be non-refundable. In the event that we are unable to automatically
+ renew your domain name for the renewal option selected for any reason, we
+ may automatically renew your domain name for a period less than your original
+ registration period to the extent necessary for the transaction to succeed.
+ If for any reason Azure is not able to take the payment from the Payment Method
+ you have on file, and you fail to respond to our notices, your domain name
+ registration will expire. It is your responsibility to keep your Payment Method
+ information current, which includes the expiration date if you are using a
+ credit card. \\r
\\n
For certain ccTLDs (.am, .at, .be, .br,
+ .ca, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .fr, .gs, .it, .jp, .ms,
+ .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw,
+ .uk, and .vg), renewal billing will occur on the first day of the month prior
+ to the month of expiration.
\\n
For certain ccTLDs (.am, .at, .be, .ca,
+ .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm, .fr, .gs, .it, .jp, .ms, .nu,
+ .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw, .com.tw, .org.tw, .idv.tw, .uk,
+ and .vg), renewal will occur, or must occur manually if the product was previously
+ cancelled, no later than the 20th of the month prior to the expiration date,
+ or your domain name will be placed in non-renewal status. For some ccTLDs
+ (.es) renewal must be processed no later than seven days before the expiration
+ date, or your domain name will be placed in non-renewal status. When the
+ domain name is in non-renewal status, you can renew the domain name only by
+ calling Azure and requesting that the domain name be renewed. You cannot renew
+ the domain name through your Account
+ Manager. If you fail to manually implement the renewal of any cancelled
+ product before the expiration date, the domain name will be cancelled and
+ you will no longer have use of that name. \\r
\\n\\n
You agree
+ that Azure will not be responsible for cancelled domain names that you fail
+ to renew in the timeframes indicated in this Agreement. In any case, if you
+ fail to renew your domain name in a timely fashion, additional charges may
+ apply. If you signed up for privacy services, protected registration, or any
+ other similar service, with your domain name registration, these services
+ will automatically be renewed when your domain name registration is up for
+ renewal, and you will incur the applicable additional renewal fee unless you
+ cancel in advance.
\\n
If you fail to renew your domain name
+ in the timeframes indicated in this Agreement, you agree that Azure may, in
+ its sole discretion, renew your expired domain name on your behalf. If Azure
+ decides to renew your expired domain name on your behalf, you will have a
+ Renewal Grace Period during which you must reimburse Azure for the renewal
+ and keep your domain name. The Renewal Grace Period is currently twelve (12)
+ days but subject to change under the terms of this Agreement.
\\n
For
+ certain ccTLDs (.am, .at, .be, .cn, .com.cn, .net.cn, .org.cn, .de, .eu, .fm,
+ .fr, .gs, .it, .jp, .ms, .nu, .nz, .co.nz, .net.nz, .org.nz, .tc, .tk, .tw,
+ .com.tw, .org.tw, .idv.tw, .uk, and .vg) there is no Renewal Grace Period
+ after the expiration date of the domain name. If you do not reimburse Azure
+ for the renewal during the Renewal Grace Period your domain name will be placed
+ on Hold and flagged for deletion after which you may have up to a 30-day redemption
+ period to redeem your domain name, provided that your domain name is not subject
+ to an expired domain name auction bid and you pay Azure a Redemption fee.
+
\\n
The Redemption fee is displayed at checkout and is subject to change
+ under the terms of this Agreement. If you do not redeem your domain name prior
+ to the end of the 30-day redemption period Azure may, in its sole discretion,
+ delete your domain name or transfer it to another registrant on your behalf.
+ \ During the redemption period your domain name may be parked.
\\n\\n
+ \
If your domain name is deleted, the Registry also provides a 30-day
+ Redemption Grace Period during which you may pay Azure a redemption fee and
+ redeem your domain name. The redemption fee is displayed at checkout and is
+ subject to change under the terms of this Agreement. If you do not redeem
+ your domain name prior to the end of the Registry's Redemption Grace Period
+ the Registry will release your name and it will become available for registration
+ on a first-come-first-served basis.
\\n
Renewal Grace Periods and Redemption
+ Grace Periods vary for different ccTLDs. Please refer to the specific terms
+ for the applicable TLD. In the event there is a conflict between the provisions
+ of this paragraph and the ccTLD terms, the ccTLD terms shall control.
\\n
Our
+ registration expiration notification policy and associated fees are described
+ here.
+ \
\\n\\n
(C) FREE PRODUCT TERMS
\\n
In
+ the event you are provided with free products with the registration of a domain
+ name, you acknowledge and agree that such free products will only be available
+ with a valid purchase and may be terminated in the event the domain name is
+ deleted or cancelled. For free domain names, you acknowledge and agree that
+ you may not change the account associated with such free domain for the first
+ five (5) days after registration. In the event a free domain name is offered
+ with the registration of another domain and if the paid domain name registered
+ fails, then we may, in our sole discretion, either delete the registration
+ of the free domain or refund the difference between the amount paid and the
+ value of the free domain. Failed registrations associated with promotional
+ offers may result in the deletion of the free or discounted item or an adjustment
+ between the registered domain price and the value of the discounted item,
+ in our sole discretion.
\\n\\n
4. TERM OF AGREEMENT;
+ TRANSFERS; DOMAIN TASTING \\n\\n
The term of this
+ Agreement shall continue in full force and effect as long as you have any
+ domain name registered through Azure. \\r
\\n
You agree that you
+ will not transfer any domain name registered through Azure to another domain
+ name registrar during the first sixty (60) days after its initial registration
+ date. You agree that you may not transfer any domain name for ten (10) days
+ after a Change of Account. \\r
\\n
You further agree that you
+ will not engage in "domain tasting" by using the five (5) day grace
+ period in which a registrant may choose to cancel a domain name and get a
+ full refund of the registration fee as a vehicle to test the marketability
+ or viability of a domain name. If Azure determines (which determination shall
+ be made by Azure in its sole and absolute discretion) that you have been engaging
+ in "domain tasting", then Azure reserves the right to (a) charge
+ you a small fee (which fee shall be deducted from any refund issued) or (b)
+ refuse your cancellation/refund request altogether. Azure will not charge
+ you a fee if Azure cancels your domain name during the five (5) day grace
+ period due to fraud or other activity outside of your control. The five (5)
+ day grace period does not apply to Premium Domains, which are non-refundable.
+ \ \\r
\\n
You agree that Azure shall not be bound by (i) any representations
+ made by third parties who you may use to purchase services from Azure, or
+ (ii) any statements of a general nature, which may be posted on Azure's website
+ or contained in Azure's promotional materials.
\\n
5.
+ UP TO DATE INFORMATION; USE OF INFORMATION AND EXPIRATION\\n\\n
+ \
You agree to notify Azure within five (5) business days when any
+ of the information you provided as part of the application and/or registration
+ process changes. It is your responsibility to keep this information in a current
+ and accurate status. Failure by you, for whatever reason, to provide Azure
+ with accurate and reliable information on an initial and continual basis,
+ shall be considered to be a material breach of this Agreement and a basis
+ for suspension and/or cancellation of the domain name. Failure by you, for
+ whatever reason, to respond within five (5) business days to any inquiries
+ made by Azure to determine the validity of information provided by you, shall
+ also be considered to be a material breach of this Agreement and a basis for
+ suspension and/or cancellation of the domain name. You agree to retain a copy
+ for your record of the receipt for purchase of your domain name.
\\n
You
+ agree that for each domain name registered by you, the following contact data
+ is required: postal address, email address, telephone number, and if available,
+ a facsimile number for the Registered Name Holder and, if different from the
+ Registered Name Holder, the same contact information for, a technical contact,
+ an administrative contact and a billing contact.
\\n
\\nYou acknowledge
+ and agree that domain name registration requires that your contact information,
+ in whole or in part, be shared with the registry operator, for their use,
+ copying, distribution, publication, modification and other processing for
+ the purpose of administration of the domain name registration, which may require
+ such information be transferred back and forth across international borders,
+ to and from the U.S. to the EU, for example. As required by ICANN or for certain
+ ccTLDs (.am, .au, .com.au, .net.au, .org.au, .ca, .cz, .fr, .it, .jp, .co.jp,
+ .kr, .co.kr, .ne.kr, .re.kr, .no, .co.nz, .net.nz, .org.nz, .vg, .se, .so,
+ .sg, .com.sg, .tw, .com.tw, .net.tw, .org.tw, .uk, .co.uk, .me.uk, .org.uk,
+ .us), this information may be made publicly available by the registry operator
+ via Whois or its successor protocol (collectively referred to as the \u201CWhois"
+ Directory) that is beyond, and not subject to, Azure's control.
\\n
Both
+ Azure and the registry operator may be required to archive this information
+ with a third-party escrow service. You hereby consent and give permission
+ for all such requirements and disclosures. Further, you represent and warrant
+ that, if you are providing information about a third party, you have notified
+ the third party of the disclosure and the purpose for the disclosure and you
+ have obtained the third party's consent to such disclosure. Registrar will
+ not process data in a way that is incompatible with this Agreement. Registrar
+ will take reasonable precautions to protect data from loss or misuse.
\\n\\n
+ \
You agree that for each domain name registered by you the following
+ information could be made publicly available in the Whois Directory as determined
+ by ICANN or registry policies and may be sold in bulk as set forth in the
+ ICANN agreement:
\\n
\\n- The domain name;
\\n- Your name and
+ postal address;
\\n- The name, email address, postal address, voice
+ and fax numbers for technical and administrative contacts;
\\n- The
+ Internet protocol numbers for the primary and secondary name servers;
\\n- The
+ corresponding names of the name servers; and
\\n- The original date
+ of registration and expiration date,
\\n- Name of primary name server
+ and secondary name server,
\\n- Identity of the registrar.
\\n
\\n
You
+ agree that, to the extent permitted by ICANN, Azure may make use of the publicly
+ available information you provided during the registration process. If you
+ engage in the reselling of domain names you agree to provide any individuals
+ whose personal information you've obtained, information about the possible
+ uses of their personal information pursuant to ICANN policy. You also agree
+ to obtain consent, and evidence of consent, from those individuals for such
+ use of the personal information they provide.
\\n\\n
You agree
+ that Azure has the right to make public and share with third parties certain
+ information in connection with the sale or purchase of domain names on the
+ website, including but not limited to (a) the name of the domain name sold
+ or purchased, (b) the sale or purchase price of the domain name sold or purchased,
+ and (c) information relating to the timing of the sale or purchase.
\\n
+ \
In order for us to comply with any current or future rules and
+ policies for domain name systems including any rules or policies established
+ by the CIRA or any provincial or federal government or by other organization
+ having control or authority to establish rules or policies, you hereby grant
+ to us the right to disclose to third parties through an interactive publicly
+ accessible registration database the following information that you are required
+ to provide when applying for a domain name:
\\n
\\n
\\r\\n- The
+ domain or sub-domain name(s) registered by you;
\\r\\n- Your organization
+ name, type and postal address;
\\r\\n- The name(s), position(s), postal
+ address(es), e-mail address(es), voice telephone number(s) and where available
+ the fax number(s) of the technical and administrative contacts for your domain
+ or sub-domain name(s);
\\r\\n- The full hostnames and Internet protocol
+ (IP) addresses of at least two (2) name server hosts (one primary and at least
+ one secondary) for your domain or sub-domain name. Up to six (6) name servers
+ may be specified. If a host has more than one (1) IP address, use a comma-separated
+ list;
\\r\\n- The corresponding names of those name servers;
+ \ \\r\\n- The original creation date of the registration; and
\\r\\n- The
+ expiration date of the registration.
\\r\\n
\\r\\n
We may be required
+ to make this information available in bulk form to third parties. We may also
+ transfer or assign this information to CIRA or such other third party as we
+ may decide, in our sole discretion.
\\n\\n
6.
+ DISPUTE RESOLUTION POLICY\\n\\n
You agree to be
+ bound by our current Dispute Resolution Policy. This policy is incorporated
+ herein and made a part of this Agreement. You can view the Uniform
+ Domain Name Dispute Resolution Policy online. You agree that Azure may
+ from time to time modify its Dispute Resolution Policy. Azure will post any
+ changes to its Dispute Resolution Policy at least thirty (30) days before
+ they become effective. You agree that by maintaining your domain name registrations
+ with Azure after the updated policy becomes effective that you agree to the
+ Dispute Resolution policy as amended. You agree to review Azure's website
+ periodically to determine if changes have been made to the Dispute Resolution
+ Policy. If you cancel or terminate your Services with Azure as a result of
+ the modified Dispute Resolution policy, no fees will be refunded to you. You
+ also agree to submit to proceedings commenced under ICANN's Uniform Rapid
+ Suspension System, if applicable.
\\n
You agree that if a dispute
+ arises as a result of one (1) or more domain names you have registered using
+ Azure, you will indemnify, defend and hold Azure harmless as provided for
+ in this Agreement. You also agree that if Azure is notified that a complaint
+ has been filed with a governmental, administrative or judicial body, regarding
+ a domain name registered by you using Azure, that Azure, in its sole discretion,
+ may take whatever action Azure deems necessary regarding further modification,
+ assignment of and/or control of the domain name deemed necessary to comply
+ with the actions or requirements of the governmental, administrative or judicial
+ body until such time as the dispute is settled. In this event you agree to
+ hold Azure harmless for any action taken by Azure.
\\n
You agree
+ to submit, without prejudice to other potentially applicable jurisdictions,
+ to the jurisdiction of the courts (1) of your domicile, (2) where registrar
+ is located or (3) where the registry operator is located (e.g., China for
+ .CN, Columbia for .CO, UK for .EU, etc.).
\\n
In the case of .ca
+ domain names, you agree that, if your use of the service or the registration
+ of a .ca domain name is challenged by a third party, you will be subject to
+ the provisions specified by CIRA in their dispute resolution policy, in effect
+ at the time of the dispute.
\\n
7. TRANSFER OF DOMAIN
+ NAMES\\n\\n
If you transfer any domain name, you
+ agree to provide the information required by, and to abide by, the procedures
+ and conditions set forth in our Domain
+ Name Transfer Agreement and Change
+ of Registrant Agreement. You may view the latest versions of our Domain
+ Name Transfer Agreement and Change of Registrant Agreement online. In order
+ to further protect your domain name, any domain name registered with Azure
+ or transferred to Azure shall be placed on lock status, unless an opted-out
+ has occurred as defined in our Change of Registrant Agreement or Domain Name
+ Proxy Agreement. The domain name must be placed on unlock status in order
+ to initiate a transfer of the domain name away from Azure to a new Registrar.
+ You may log into your account with Azure at any time after your domain name
+ has been successfully transferred to Azure, and change the status to unlock.
\\n
+ \
8. YOUR OBLIGATIONS; SUSPENSION OF SERVICES; BREACH
+ OF AGREEMENT\\n\\n
You represent and warrant to
+ the best of your knowledge that, neither the registration of the domain nor
+ the manner it is directly or indirectly used, infringes the legal rights of
+ any third party. You will comply with all applicable laws, including, but
+ not limited to those relating to privacy, data collection, consumer protection,
+ fair lending, debt collection, organic farming, and disclosure of data and
+ financial disclosures. If you collect and maintain sensitive health and financial
+ data, you must implement reasonable and appropriate security measures commensurate
+ with the offering of those services, as defined by applicable law. You represent
+ that you possess any necessary authorization, charter, license, and/or other
+ related credential for participation in the sector associated with the associated
+ registry tld string. You will report any material changes to the validity
+ of your authorization, charter, license, and/or other related credential.
+ You will indemnify and hold harmless the registrar and registry operator,
+ and their directors, officers, employees and agents, from and against any
+ and all claims, damages, liabilities, costs and expenses (including reasonable
+ legal fees and expenses) arising out of or related to the domain name registration.
+ \ This obligation shall survive expiration or termination of this Agreement
+ or the domain name registration.
\\n
You agree that, in addition
+ to other events set forth in this Agreement: \\r
\\n
- Your ability
+ to use any of the services provided by Azure is subject to cancellation or
+ suspension in the event there is an unresolved breach of this Agreement and/or
+ suspension or cancellation is required by any policy now in effect or adopted
+ later by ICANN;
\\r\\n \\r\\n- Your registration of any domain names
+ shall be subject to suspension, cancellation or transfer pursuant to any ICANN
+ adopted specification or policy, or pursuant to any Azure procedure not inconsistent
+ with an ICANN adopted specification or policy (a) to correct mistakes by Azure
+ or the registry operator in registering any domain name; or (b) for the resolution
+ of disputes concerning any domain name.
\\r\\n
\\nYou acknowledge
+ and agree that Azure and registry reserve the right to deny, cancel or transfer
+ any registration or transaction, or place any domain name(s) on lock, hold
+ or similar status, as either deems necessary, in the unlimited and sole discretion
+ of either Azure or the registry: (i) to comply with specifications adopted
+ by any industry group generally recognized as authoritative with respect to
+ the Internet (e.g., RFCs), (ii) to protect the integrity and stability of,
+ and correct mistakes made by, any domain name registry or registrar, (iii)
+ for the non-payment of fees to registry, (iv) to protect the integrity and
+ stability of the registry, (v) to comply with any applicable court orders,
+ laws, government rules or requirements, requests of law enforcement, or any
+ dispute resolution process, (vi) to comply with any applicable ICANN rules
+ or regulations, including without limitation, the registry agreement, (vii)
+ to avoid any liability, civil or criminal, on the part of registry operator,
+ as well as its affiliates, subsidiaries, officers, directors, and employees,
+ (viii) per the terms of this Agreement, (ix) following an occurrence of any
+ of the prohibited activities described in Section 8 below, or (x) during the
+ resolution of a dispute.
\\n\\n
You agree that your failure
+ to comply completely with the terms and conditions of this Agreement and any
+ Azure rule or policy may be considered by Azure to be a material breach of
+ this Agreement and Azure may provide you with notice of such breach either
+ in writing or electronically (i.e. email). In the event you do not provide
+ Azure with material evidence that you have not breached your obligations to
+ Azure within ten (10) business days, Azure may terminate its relationship
+ with you and take any remedial action available to Azure under the applicable
+ laws. Such remedial action may be implemented without notice to you and may
+ include, but is not limited to, cancelling the registration of any of your
+ domain names and discontinuing any services provided by Azure to you. No fees
+ will be refunded to you should your Services be cancelled or terminated because
+ of a breach.
\\n
Azure's failure to act upon or notify you of any event,
+ which may constitute a breach, shall not relieve you from or excuse you of
+ the fact that you have committed a breach.
\\n\\n
9.
+ RESTRICTION OF SERVICES; RIGHT OF REFUSAL\\n\\n
If
+ you are hosting your domain name system (\u201CDNS\u201D) on Azure\u2019s
+ servers, or are using our systems to forward a domain name, URL, or otherwise
+ to a system or site hosted elsewhere, or if you have your domain name registered
+ with Azure, you are responsible for ensuring there is no excessive overloading
+ on Azure\u2019s servers. You may not use Azure\u2019s servers and your domain
+ name as a source, intermediary, reply to address, or destination address for
+ mail bombs, Internet packet flooding, packet corruption, or other abusive
+ attack. Server hacking or other perpetration of security breaches is prohibited.
+ You agree that Azure reserves the right to deactivate your domain name from
+ its DNS if Azure deems it is the recipient of activities caused by your site
+ that threaten the stability of its network.
\\n
You agree that
+ Azure, in its sole discretion and without liability to you, may refuse to
+ accept the registration of any domain name. Azure also may in its sole discretion
+ and without liability to you delete the registration of any domain name during
+ the first thirty (30) days after registration has taken place.
\\n
In
+ the event Azure refuses a registration or deletes an existing registration
+ during the first thirty (30) days after registration, you will receive a refund
+ of any fees paid to Azure in connection with the registration either being
+ cancelled or refused. In the event Azure deletes the registration of a domain
+ name being used in association with spam or morally objectionable activities,
+ no refund will be issued.
\\n\\n
10. DEFAULT
+ SETTINGS; PARKED PAGE\\n\\n
Choosing Your Domain
+ Name Settings. When you register a domain name with Azure, you will be
+ prompted to choose your domain name settings during the checkout process.
+ \ If you plan on using another provider for your website or hosting needs,
+ then you should enter the name servers of such provider when you choose your
+ domain name settings. This will direct your domain name away from Azure\u2019s
+ name servers. If you are an existing Azure customer and have already set
+ up a customer profile designating your domain name settings for new domain
+ name registrations, you will not need to complete this step again during the
+ checkout process.
\\n
Azure\u2019s Default Settings.
+ \ If you do not direct your domain name away from Azure\u2019s name servers
+ as described above, Azure will direct your domain name to a \u201CParked
+ Page\u201D (\u201CDefault Setting\u201D). You acknowledge and
+ agree that Azure has the right to set the Default Setting.
\\n
Parked
+ Page Default Setting. Azure's Parked Page service is an online domain
+ monetization system designed to generate revenue (through the use of pay per
+ click advertising) from domain names that are not actively being used as websites.
+ \ If your domain name is directed to a Parked Page, you acknowledge and agree
+ that Azure may display both (a) in-house advertising (which includes links
+ to Azure products and services) and (b) third-party advertising (which includes
+ links to third-party products and services) on your Parked Page through the
+ use of pop-up or pop-under browser windows, banner advertisements, audio or
+ video streams, or any other advertising means, and we may aggregate for our
+ own use, related usage data by means of cookies and other similar means. In
+ addition, you acknowledge and agree that all in-house and third-party advertising
+ will be selected by Azure and its advertising partners, as appropriate, and
+ you will not be permitted to customize the advertising, or entitled to any
+ compensation in exchange therefor. Please note that the third-party advertising
+ displayed on Azure\u2019s Parked Pages may contain content offensive to you,
+ including but not limited to links to adult content. Azure makes no effort
+ to edit, control, monitor, or restrict the content and third-party advertising
+ displayed on Azure\u2019s Parked Pages, and expressly disclaims any liability
+ or responsibility to you or any third party in connection therewith.
\\n
+ \
Changing Azure\u2019s Default Settings. You may change
+ Azure\u2019s Default Settings at any time during the term of your domain name
+ registration.
\\n
- Content Displaying On Your Parked Page.
+ \ You can not modify the content displaying on your Parked Page. You may
+ select one of the other options listed below.
\\r\\n\\r\\n- Participating
+ In Domain Name Monetization. If you wish to participate in the domain
+ monetization potential presented by Azure\u2019s Parked Page service, please
+ review and consider purchasing our CashParking\xAE service.
\\r\\n \\r\\n- No
+ Content. If the options listed above are not acceptable to you, please
+ contact customer support to learn what other options might be available to
+ you.
\\n
Return To Parked Page Default Setting Upon
+ Domain Name Expiration. Upon domain name expiration, and regardless of
+ how you use your domain name during the term of your domain name registration,
+ your domain name will automatically return to the Parked Page Default Setting
+ described above. As used in this paragraph, \u201Cexpiration\u201D is deemed
+ to include any \u201Crenewal period\u201D or \u201Credemption period\u201D
+ immediately after the domain name expires, but before the domain name is returned
+ to the registry. Once your domain name has returned to the Parked Page Default
+ Setting described above, the only way to opt out of the Parked Page service
+ is to renew, redeem, or re-register your domain name in accordance with Section
+ 2(B), Domain Name Renewal Terms, of this Agreement.
\\n
11.
+ \ DOMAIN ADD-ONS\\n\\n
Business Registration:
+ \ Business registration allows You to display additional information about
+ the business that is the basis of Your domain name, including, but not limited
+ to, such information as Your fax number, street address, and hours of operation.
\\n
+ \
Expiration Consolidation. You understand and acknowledge
+ the expiration consolidation service may only be used to consolidate the expiration
+ of .com and .net domain names. The service may not be used to consolidate
+ domains that are on Registrar HOLD, Registry HOLD, or pending Transfer status.
+ You acknowledge the service may only be used to push the expiration date of
+ Your domains forward in time, at least one (1) month forward and no more than
+ ten (10) years forward, and then, only for a period lasting less than twelve
+ (12) months. Once the service has been used to consolidate domains, the new
+ expiration date may not be reversed. To ensure the service is not abused or
+ used as an alternative to renewals, you may only use the service on each domain
+ once in any 12-month period. The service may only be used on domain names
+ that have not passed their expiration date. In order to change the expiration
+ date again, You will be required to renew the domain name first. You further
+ understand and acknowledge the service may only be used to coordinate domains
+ where we are the registrar of record. Domains not registered with us must
+ be transferred before we can perform the Service.
\\n
Discount
+ Domain Club Basic. The Discount Domain Club membership includes the
+ purchase of discounted products and services from us, including discounts
+ on certain domain registrations. Eligible TLDs include .COM, .NET, .ORG, .INFO,
+ .BIZ, .CO, .CA, .COM.AU, .CO.UK, .US, .IN. Any available discount applies
+ only to registration fees and will not apply to any commission fees. You are
+ required to keep Your membership current as long as You have free or discounted
+ products or services that are purchased with us. If You fail to renew Your
+ membership, without canceling Your discounted domain registration or other
+ services, we will automatically renew Your products and services at the regular
+ pricing in effect at the time of renewal, charging the Payment Method on file
+ for You, and You will be unable to purchase any more discounted products or
+ services, or use Your free accounts until the Membership Agreement fee has
+ been paid. All membership fees are non-refundable.
\\n
Discount
+ Domain Club Premium. The Discount Domain Club membership includes,
+ the purchase of discounted products and services from us, including discounts
+ on selected domain registrations, one (1) free Auctions account, one (1) free
+ CashParking account, and discounts on Domain Brokerage Service. Any available
+ discount applies only to upfront Broker Service Fee and will not apply to
+ any commission fees. You are required to keep Your membership current as
+ long as You have free or discounted products or services that are purchased
+ with us. If You fail to renew Your membership, without canceling Your discounted
+ domain registration or other services, we will automatically renew Your products
+ and services at the regular pricing in effect at the time of renewal, charging
+ the Payment Method on file for You, and You will be unable to purchase any
+ more discounted products or services, or use Your free accounts until the
+ Membership Agreement fee has been paid. All membership fees are non-refundable.
\\n\\n
+ \
Backordering/Monitoring. You agree a domain
+ name that has expired shall be subject first to a grace period of twelve (12)
+ days, followed by the ICANN-mandated redemption grace period of thirty (30)
+ days. During this period of time, the current domain name registrant may renew
+ the domain name and retain registration rights. We do not guarantee your backorder
+ will result in you obtaining the domain name and expressly reserves the right
+ to (a) refuse additional backorders or (b) cancel existing backorders at any
+ time for any reason. If your backorder is refused or cancelled, we agree
+ to promptly refund any fees paid for such domain name backorder. The domain
+ name may also be placed in a secondary market for resale through the Auctions\xAE
+ service. After your first year of Auctions membership, you agree that unless
+ otherwise advised, we will automatically renew your Auctions membership using
+ the payment method you have on file for so long as your backorder credit is
+ active. You may learn more about Auctions by visiting the Auctions website.
+ The domain name may also be subject to a drop pool process before it is available
+ for purchasing. You understand we and our registrar affiliates use our services,
+ including backordering. Therefore, the domain name may be registered with
+ a different registrar, but can be managed through your account. By using
+ the Services, you will be able to, among other things: \\r
\\n
- Backorder
+ any domain name under the top level domains .COM, .NET, .US, .BIZ, .INFO,
+ .ORG, .MOBI. A backorder for a domain name will include the price of up to
+ a one-year domain name registration. Should you successfully backorder any
+ domain name, you will be subject to the terms and conditions of the Domain
+ Name Registration and related agreements, which are incorporated herein by
+ reference.
- Change your backorder until you obtain a domain name. You
+ will have the opportunity to change the credit to a different domain name
+ until you successfully capture one. After three (3) years, if the credit is
+ not used, we reserves the right to remove the credit.
- Monitor your
+ currently registered domain names for changes in registrar, status, expiration
+ date or name servers at no additional cost.
- Subscribe to Domain Alert
+ Pro or monitoring, which enables you to monitor any currently registered domain
+ name, regardless of registrar, for historical tracking of status changes and
+ designation of multiple email notification addresses.
\\r\\n\\n
+ \
Domain Ownership Protection. Domain Ownership
+ Protection generally allows You to: (i) prevent accidental loss of a domain
+ name due to an expired credit card or invalid payment method for a period
+ of ninety (90) days before the domain goes through its normal expiration process;
+ and (ii) lock your domain name to your account.
\\n
THE SERVICE WILL
+ NOT, HOWEVER, PREVENT TRANSFERS RESULTING FROM YOUR ACTION OF LISTING YOUR
+ DOMAIN FOR SALE ON ANY OF Azure'S
+ PLATFORMS, INCLUDING PREMIUM LISTINGS, REGARDLESS OF WHEN YOU PURCHASED THE
+ SERVICE.
\\n
Once you have elected to purchase the Service for any and
+ all domain names, the automatic renewal function will be activated for each
+ domain name and those names will not be transferable until You elect to remove
+ the service or sell the domain as mentioned above. Accordingly, You acknowledge
+ and agree You have carefully considered the implications accompanying the
+ purchase of the Service and understand the restrictions the Service will place
+ upon Your ability to transfer any domains for which You have purchased the
+ Service. Furthermore, you acknowledge and agree that the Service includes
+ additional steps to verify your registration rights prior to deactivation.
+ While You can elect to deactivate the Service at any time, you also acknowledge
+ and agree that the Service is subject to our Refund Policy, and that you may
+ not be entitled to a refund.
\\n\\n
Premium Domain
+ Listing and Buying Services.
\\n
\\n- \\n
Description
+ of Service. The Premium Domain Buying Service (\u201CService\u201D)
+ is provided to facilitate the buying of currently registered domain names
+ only, and not the purchase or sale of associated website content.. Azure provides
+ a venue and a transaction facilitation process and will take a stated commission
+ for each completed transaction. Azure is not an escrow agent. As a result,
+ Azure does not guarantee the quality, safety or legality of many of the domain
+ names. Domain names listed may be withdrawn at any time by the seller or by
+ us. You acknowledge and agree that your transaction will be handled by Azure's
+ \u201CTransaction Assurance\u201D process. By using Azure's \u201CTransaction
+ Assurance\u201D process, you authorize Azure to perform tasks on your behalf
+ in order to complete the transaction. In these transactions, Azure acts as
+ a transaction facilitator to help you buy and sell domain names. Azure will
+ not use your funds for its operating expenses or any other corporate purposes,
+ and will not voluntarily make funds available to its creditors in the event
+ of bankruptcy or for any other purpose. You acknowledge Azure is not a bank
+ and the service is a payment processing service rather than a banking service.
+ You further acknowledge Azure is not acting as a trustee, fiduciary or escrow
+ with respect to your funds. In all transactions, where the domain name is
+ registered to us, domain names purchased through the Service may not be transferred
+ away from us to another registrar for a period of sixty (60) days following
+ the change of registrant date.
\\n \\n- \\n
Your Obligations.
Purchasing
+ Domain Names. As a Buyer, You are obligated to complete the transaction
+ if You purchase the domain name. You acknowledge that some listed domain names
+ may be subject to an additional registration fee. For those domain names,
+ the registration fee will be added to the price to form the purchase price.
+ You agree that by completing the transaction, You are responsible for payment
+ of the registration fee. We will obtain the funds first by the Payment Method
+ You have designated. If there are insufficient funds or invalid credit card
+ information, we may obtain the remaining funds by charging any Payment Method
+ You have on file.
Azure will remit payment of the full agreed upon
+ purchase price minus any commissions to the Seller after a prescribed period
+ of time after receiving funds from the Buyer, except in the event of a dispute
+ or where the payment is suspected to be fraudulent, as determined by Azure
+ in its sole and absolute discretion. At no time will You be able to withdraw
+ those funds or send the funds to another recipient unless the initial transaction
+ is canceled. Transfer of Registration Rights. We are not the registrant of
+ all of the domain names listed on the Site and cannot guarantee immediate
+ transfer. For domain names in which we are the registrant, transfer of registration
+ will begin upon completion of the check out procedure. Further, the transfer
+ by us of any domain name to a buyer is done without warranty and we expressly
+ waive any and all warranties or representations that a domain name does not
+ infringe upon the intellectual property rights of a third party. Any Domain
+ Ownership Protection service that is present on the domain will not prevent
+ you from listing the domain name and having the registration rights transferred
+ away from You. Azure is not responsible and disclaims all liability in the
+ event that the domain name transaction fails to complete due to breach by
+ either the Buyer or the Seller of its respective obligations. Buyer acknowledges
+ and agrees that Buyer does not obtain any rights in the registration of a
+ domain name until the transaction is complete.
Transfer of
+ Registration Rights. We are not the registrant of all of the domain
+ names listed on the Site and cannot guarantee immediate transfer. For domain
+ names in which we are the registrant, transfer of registration will begin
+ upon completion of the check out procedure. Further, the transfer by us of
+ any domain name to a buyer is done without warranty and we expressly waive
+ any and all warranties or representations that a domain name does not infringe
+ upon the intellectual property rights of a third party. Any Domain Ownership
+ Protection service that is present on the domain will not prevent you from
+ listing the domain name and having the registration rights transferred away
+ from You.
Azure is not responsible and disclaims all liability in the
+ event that the domain name transaction fails to complete due to breach by
+ either the Buyer or the Seller of its respective obligations. Buyer acknowledges
+ and agrees that Buyer does not obtain any rights in the registration of a
+ domain name until the transaction is complete.
Selling Domain
+ Names. As a Seller, You are obligated to complete the transaction
+ if the Buyer commits to purchase the domain at an agreed upon purchase price.
+ You authorize Azure to perform tasks on your behalf as part of its \u201CTransaction
+ Assurance\u201D process including making deposits. You must, at the time of
+ listing of Your domain name, establish a payee account.
After a fraud
+ holding period, if no fraud has been detected, payments for completed domain
+ name sales will be credited to your payee account and paid according to the
+ payment method selected in your payee account.
You hereby authorize
+ Azure to initiate and post (i) credit (positive) entries for payments to the
+ deposit account and (ii) debit (negative) entries to the deposit account to
+ reverse erroneous payments and/or make adjustments to incorrect payments.
+ You acknowledge and agree that the amount initiated and posted to the deposit
+ account will represent payment for domain names sold using the Services, less
+ any applicable fees and/or chargebacks. You acknowledge and agree that there
+ may be a delay of several days between the time that Azure initiates the payment
+ of proceeds and the time that the proceeds are actually posted to the deposit
+ account, and Azure expressly disclaims any liability or responsibility regarding
+ the same.
The authority granted to Azure by the deposit account owner
+ herein will remain in full force and effect until Azure has received written
+ notification from the deposit account owner that such authority has been revoked,
+ but in any event, such writing shall be provided in such a manner as to afford
+ Azure a reasonable opportunity to act on such revocation, or until Azure has
+ sent notice to terminate this Agreement. Azure will not release the domain
+ name to Buyer until receipt of confirmation that the funds have been verified.
\\n \\n
\\n\\n
+ \
Transfer Validation The transfer validation service
+ is provided to help You keep Your domain name secure. By choosing to use the
+ service, You are making an explicit and voluntary request to us to deny all
+ attempts to transfer Your domain name to another registrar, or to move Your
+ domain name to another account, unless You verify each request as described
+ herein. You will provide us with a contact name, phone number and PIN for
+ domain transfer validations. You will be contacted by us when a domain transfer
+ is requested for a domain name in Your account.
\\n
When we receive
+ a transfer request, we will call You to verify the transfer request. If we
+ cannot reach You with seventy-two (72) hours of receipt of the transfer request,
+ the transfer will be denied. If You do not provide the proper PIN, the transfer
+ will be denied. When we receive a change of account request, we will call
+ You to verify the change request. If we cannot reach You with seventy-two
+ (72) hours of receipt of the change request, the change will be denied. If
+ You do not provide the proper PIN, the change will be denied. Availability
+ of Services are subject to the terms and conditions of this Agreement and
+ each of our policies and procedures. We shall use commercially reasonable
+ efforts to attempt to provide certain portions of the Services on a twenty-four
+ (24) hours a day, seven (7) days a week basis throughout the term of this
+ Agreement and other portions of the service, during normal business hours.
+
\\n
You acknowledge and agree that from time to time the Services may
+ be inaccessible or inoperable for any reason, including, without limitation:
+ (i) equipment malfunctions; (ii) periodic maintenance procedures or repairs
+ that we may undertake from time to time; or (iii) causes beyond the reasonable
+ control of us or that are not reasonably foreseeable by us, including, without
+ limitation, interruption or failure of telecommunication or digital transmission
+ links, hostile network attacks, network congestion or other failures. You
+ acknowledge and agree that we has no control over the availability of the
+ service on a continuous or uninterrupted basis.
\\n\\n
Total/Premium
+ DNS. Total DNS is a complete Domain Name System (\u201CDNS\u201D)
+ tool that allows you to manage your DNS and keep your website and web-based
+ applications available and performing reliably. The service is provided \u201Cas
+ is\u201D, \u201Cas available\u201D, and \u201Cwith all faults\u201D, and we
+ assume no liability or responsibility regarding the same.
\\n
In addition,
+ you specifically acknowledge and agree that we shall have no liability or
+ responsibility for any: \\r
\\n
\\r\\n- Service interruptions caused
+ by periodic maintenance, repairs or replacements of the Global Nameserver
+ Infrastructure (defined below) that we may undertake from time to time;
\\r\\n- Service
+ interruptions caused by you from custom scripting, coding, programming or
+ configurations;
\\r\\n- Service interruptions caused by you from the
+ installation of third-party applications;
\\r\\n- Service interruptions
+ that do not prevent visitors from accessing your website, but merely affect
+ your ability to make changes to your website, including but not limited to,
+ changes via mechanisms such as file transfer protocol (\u201CFTP\u201D)
+ and email; or
\\r\\n- Service interruptions beyond the reasonable control
+ of us or that are not reasonably foreseeable by us, including, but not limited
+ to, power outages, interruption or failure of telecommunication or digital
+ transmission links, hostile network attacks, network congestion or other failures.
\\r\\n
\\r\\n
Subject
+ to the provisions of Force Majeure below, we offer a service uptime guarantee
+ (\u201CService Uptime Guarantee\u201D) for paid services of 99.999%
+ availability (defined below). You shall receive service credits for any Outage
+ (defined below) of the service covered by the Service Uptime Guarantee. The
+ service credits shall be applied as extensions to the terms of the affected
+ Service. The Service Uptime Guarantee shall become effective fourteen (14)
+ days after your purchase of the Service covered by the Service Uptime Guarantee
+ to allow both parties time to properly configure and test the Service.
\\n\\n
+ \
Definitions. For the purposes of the Service
+ Uptime Guarantee, the following definitions shall apply: \\r
\\n
\\r\\n- \u201CGlobal
+ Nameserver Infrastructure\u201D: The group of systems (servers, hardware,
+ and associated software) that are responsible for delivering the Services.
+ The Global Nameserver Infrastructure does not include web-based user interfaces,
+ zone transfer mechanisms, update systems, or other customer-accessible data
+ access or manipulation methods.
\\r\\n- \u201C99.999% availability\u201D:
+ \ A guarantee that the Global Nameserver Infrastructure shall be available
+ to respond to DNS queries 99.999% of the time.
\\r\\n- \u201COutage\u201D:
+ \ A period in which the Global Nameserver Infrastructure did not maintain
+ 99.999% availability.
\\r\\n
\\n
Exclusions.
+ \ For the purposes of the Service Uptime Guarantee, downtime due to the following
+ events shall not be considered an Outage:
\\n
\\r\\n- Service interruptions
+ caused by \u201CRegularly Scheduled Maintenance\u201D, which shall
+ be defined as any maintenance performed on the Global Nameserver Infrastructure
+ of which customer is notified twenty-four (24) hours in advance. Email notice
+ of Regularly Scheduled Maintenance shall be provided to customer\u2019s designated
+ email address;
\\r\\n- Service interruptions caused by you from custom
+ scripting, coding, programming or configurations;
\\r\\n- Service interruptions
+ caused by you from the installation of third-party applications;
\\r\\n- Service
+ interruptions that do not prevent visitors from accessing your website, but
+ merely affect your ability to make changes to your website, including but
+ not limited to, changes via mechanisms such as file transfer protocol (\u201CFTP\u201D)
+ and email; or
\\r\\n- Service interruptions beyond the reasonable control
+ of us or that are not reasonably foreseeable by us, including, but not limited
+ to, power outages, interruption or failure of telecommunication or digital
+ transmission links, hostile network attacks, network congestion or other failures.
\\r\\n
\\r\\n
We,
+ in our sole and absolute discretion, shall determine whether an event shall
+ be considered an Outage.
\\n\\n
Remedies.
+ \ For the purposes of the Service Uptime Guarantee, when the customer becomes
+ aware of an Outage, the customer shall open a ticket with our technical support
+ services within five (5) calendar days of the Outage. If we determine that
+ an Outage did occur, then the customer shall receive a service credit in the
+ amount of two (2) months for any affected Services. The service credit shall
+ be applied as an extension to the term of the affected Services. A customer\u2019s
+ Account shall not be credited more than once per month under the Service Uptime
+ Guarantee. \\r
\\n
To qualify for a service credit, you must have a
+ current and valid subscription to the Services affected, and must have an
+ Account in good standing with us. Service credits will not apply to any charges
+ or Services other than the Services for which the Service Uptime Guarantee
+ was not met. Customers with subscriptions for more than one Service will
+ not receive credits for unaffected Services. The remedies set forth herein
+ shall be the sole and exclusive remedies if we do not meet the Service Uptime
+ Guarantee.
\\n
In the event either party is unable to carry out its material
+ obligations under this Agreement by reason of Force Majeure those obligations
+ will be suspended during the continuance of the Force Majeure, provided the
+ cause of the Force Majeure is remedied as quickly as practicable. The term
+ \u201CForce Majeure\u201D means any event caused by occurrences beyond
+ a party\u2019s reasonable control, including, but not limited to, acts of
+ God, fire or flood, war, terrorism, governmental regulations, policies or
+ actions enacted or taken subsequent to execution of this Agreement, or any
+ labor, telecommunications or other utility shortage, outage or curtailment.
\\n
If
+ your Services include Domain Name System Security Extensions (\u201CDNSSEC\u201D),
+ you will be able to secure your domain names with DNSSEC. DNSSEC is designed
+ to protect you from forged DNS data so \u201Chackers\u201D cannot direct visitors
+ to your website to a forged site.
\\n
DNSSEC works by
+ using public key cryptography. You acknowledge and agree that if the keys
+ do not match, a visitor\u2019s lookup of your website may fail (and result
+ in a \u201Cwebsite not found\u201D error) and we assume no liability or responsibility
+ regarding the same. In addition, DNSSEC responses are authenticated, but
+ not encrypted. You acknowledge and agree that DNSSEC does not provide confidentiality
+ of data, and we assume no liability or responsibility regarding the same.
\\n
We
+ prohibit the running of a public recursive DNS service on any server. All
+ recursive DNS servers must be secured to allow only internal network access
+ or a limited set of IP addresses. We actively scan for the presence of public
+ recursive DNS services and reserves the right to remove any servers from the
+ network that violate this restriction.
\\n\\n
Full
+ Domain Protection. The Full Domain Protection service generally allows
+ You to: \\r
\\n
\\n- replace your personal details in the WHOIS Directory
+ with the details of Domains By Proxy;
\\n- set up a private email address
+ for each domain name that you can forward, filter or block; and
\\n- lock
+ your domain name in your account.
\\n
\\n
The Full Domain Protection
+ service features are intended to: prevent domain-related spam; protect your
+ identity from third-parties; and add a higher level of security through 2-Step
+ Verification to disallow most accidental or malicious domain name transfers.
+ As set forth in Section 2(xi) of this Agreement, You acknowledge and agree
+ that you may not be permitted to purchase private or proxy TLD registrations
+ in certain markets, countries and territories or for certain TLDs. Your purchase
+ and use of Full Domain Protection is also subject to and governed by the terms
+ of the Domain Name Proxy Agreement.
\\n\\n
Ultimate
+ Domain Protection (also called Full Domain Privacy and Protection).
+ The Ultimate Domain Protection service generally allows You to:
\\n
\\n- replace
+ your personal details in the WHOIS Directory with the details of Domains By
+ Proxy;
\\n- set up a private email address for each domain name that
+ you can forward, filter or block;
\\n- prevent accidental loss of a
+ domain name due to an expired credit card or invalid payment method when domain
+ is set on auto-renew; and
\\n- lock your domain name in your account.
+
\\n
\\n
The Ultimate Domain Protection service features are intended
+ to: prevent domain-related spam; protect your identity from third-parties;
+ and add a higher level of security through 2-Step Verification to disallow
+ most accidental or malicious domain name transfers.. As set forth in Section
+ 2(xi) of this Agreement, You acknowledge and agree that you may not be permitted
+ to purchase private or proxy TLD registrations in certain markets, countries
+ and territories or for certain TLDs. Your purchase and use of Ultimate Domain
+ Protection is also subject to and governed by the terms of the Domain
+ Name Proxy Agreement.
\\n\\n
Ultimate Domain Protection
+ & Security. The privacy and business protection service includes
+ all the features of Full Domain Privacy and Protection, plus the service generally
+ allows You to: (i) prevent accidental loss of a domain name due to an expired
+ credit card or invalid payment method when domain is set on auto-renew; (ii)
+ lock your domain name in your account; and (iii) activate Website Security
+ Basic. The privacy and business protection service features are intended to:
+ prevent domain-related spam; protect your identity from third-parties; plus
+ add a higher level of security through 2-Step Verification to disallow most
+ accidental or malicious domain name transfers;; and provide domain name protection
+ through Website Security Basic. As set forth in Section 2(xi) of this Agreement,
+ You acknowledge and agree that you may not be permitted to purchase private
+ or proxy TLD registrations in certain markets, countries and territories or
+ for certain TLDs. Your purchase and use of Ultimate Domain Protection &
+ Security is also governed by terms of the Domain
+ Name Proxy Agreement and Website
+ Security Terms of Use
\\n
Trademark Keeper (Beta)
+ Trademark Keeper is a free beta feature of your domain that (i) automatically
+ captures a record of Your homepage including any trademarks on that homepage
+ quarterly (\u201CScreen Capture(s)\u201D), and (ii) timestamps and records
+ proof of the Screen Capture(s) using blockchain technology to ensure that
+ the record is secure. Trademark Keeper also allows You to identify up to three
+ (3) individual trademarks to help You catalog Your brand assets in Your dashboard.
+ Trademark Keeper stores the Screen Capture(s) on servers provisioned by Azure
+ but does not analyze, modify or edit the Screen Capture(s). Trademark Keeper
+ stores a digital signature of the Screen Captures on a blockchain proving
+ the Screen Captures\u2019 existence at a certain time, but does not store
+ the Screen Capture itself on the blockchain. You may request a report that
+ shows a historical record of Screen Captures that have been captured by Trademark
+ Keeper. At any time, You may opt out of Trademark Keeper and delete the historical
+ record of Screen Captures. Your Screen Captures will be deleted 24 hours after
+ You disable the \u201CKeep My Data\u201D function. If you re-enable this function
+ within 24 hours, your Screen Captures may be restored. Azure may discontinue
+ the Beta feature at any time and for any reason.
\\n
YOU ACKNOWLEDGE THAT YOUR USE OF TRADEMARK KEEPER DOES NOT
+ RESULT IN AN \u201COFFICIAL\u201D TRADEMARK REGISTRATION WITH A GOVERNMENTAL
+ TRADEMARK OFFICE. YOU ACKNOWLEDGE THAT TRADEMARK KEEPER IS NOT A LEGAL SERVICE
+ AND YOU SHOULD CONSULT A TRADEMARK ATTORNEY FOR ADVICE ON HOW TO BEST PROTECT
+ YOUR TRADEMARK RIGHTS. Azure MAKES NO REPRESENTATIONS OR WARRANTIES WITH REGARDS
+ TO ANY MATTER INCLUDING THE ADMISSIBILITY OF THE SCREEN CAPTURES OR RECORDS
+ CAPTURED THROUGH TRADEMARK KEEPER.
\\n\\n
12.
+ PRE-REGISTRATIONS\\n\\n
If you submit an application
+ for pre-registration of a domain name, Azure does not guarantee that the name
+ will be secured for you, or that you will have immediate access to the domain
+ name if secured. Azure may use third-party service providers for the pre-registration
+ services.
\\n
13. PROVISIONS SPECIFIC TO .BIZ REGISTRATIONS\\n\\n
+ \
Domain Name Dispute Policy. If you reserved or registered
+ a .BIZ domain name through us, in addition to our Dispute Resolution Policy,
+ you hereby acknowledge that you have read and understood and agree to be bound
+ by the terms and conditions of the Restrictions
+ Dispute Resolution Policy applicable to the .biz TLD.
\\n
The
+ RDRP sets forth the terms under which any allegation that a domain name is
+ not used primarily for business or commercial purposes shall be enforced on
+ a case-by-case basis by an independent ICANN-accredited dispute provider.
+ Registry Operator will not review, monitor, or otherwise verify that any particular
+ domain name is being used primarily for business or commercial purposes or
+ that a domain name is being used in compliance with the SUDRP or UDRP processes.
\\n
+ \
One Year Registration. If you are registering a
+ .BIZ domain name and you elect to take advantage of special pricing applicable
+ to one-year registrations, we will automatically renew your domain name for
+ an additional one-year period at the end of the first year term by taking
+ payment from the Payment Method you have on file, unless you notify us that
+ you do not wish to renew. You will be notified and given the opportunity to
+ accept or decline the one-year renewal prior to your domain name expiration
+ date. In the event you decide not to renew your one-year .BIZ domain name
+ for a second year, your domain name registration will automatically revert
+ back to us and we will gain full rights of registration to such domain name.
+ You agree that if you delete or transfer your .BIZ domain name during the
+ first year, you will automatically be charged the second year renewal fees.
\\n
+ \
14. PROVISIONS SPECIFIC TO .INFO REGISTRATIONS\\n\\n
+ \
One Year Registration. If you are registering a
+ .INFO domain name and you elect to take advantage of special pricing applicable
+ to one-year registrations, we will automatically renew your domain name for
+ an additional one-year period at the end of the first year term by taking
+ payment from the Payment Method you have on file, unless you notify us that
+ you do not wish to renew. You will be notified and given the opportunity to
+ accept or decline the one-year renewal prior to your domain name expiration
+ date. In the event you decide not to renew your one-year .INFO domain name
+ for a second year, your domain name registration will automatically revert
+ back to us and we will gain full rights of registration to such domain name.
+ You agree that if you delete or transfer your .INFO domain name during the
+ first year, you will automatically be charged the second year renewal fees.
\\n
+ \
15. PROVISIONS SPECIFIC TO .NAME REGISTRATIONS\\n\\n
+ \
Defensive Registration. A Defensive Registration
+ is a registration designed for the protection of trademarks and service marks
+ and may be granted to prevent a third party from registering a variation of
+ a trademark or the exact trademark. If the name you wish to register is subject
+ to a Defensive Registration, you have three (3) options: (i) you may register
+ a variation of the name, (ii) you may challenge the Defensive Registration
+ under the Eligibility
+ Requirements Dispute Resolution Policy, or (iii) you may request Consent
+ from the Defensive Registrant. You can request Consent by contacting the Defensive
+ Registrant listed in the GNR Whois Directory and requesting consent to register
+ the .NAME domain name. If the Defensive Registrant grants consent, they must
+ confirm in writing that they grant consent. If the Defensive Registrant does
+ not grant consent, you may wish to challenge the Defensive Registration under
+ the ERDRP.
\\n
Acceptable Use Policy. You agree
+ to be bound by the .NAME
+ Acceptable Use Policy, which is hereby incorporated by reference. Among
+ other limitations, this policy prohibits you from using your .NAME Email to
+ engage in Spamming activities. You will be limited to a maximum of five hundred
+ (500) messages sent from your .NAME at a time.
\\n
16.
+ PROVISIONS SPECIFIC TO .REISE REGISTRATIONS\\n\\n
Domain
+ Names registered in .REISE should be used for purposes dedicated to travel
+ topics within six months following initial Registration, e.g. utilized on
+ the Internet or otherwise used to perform a function.
\\n
17.
+ PROVISIONS SPECIFIC TO .SEXY REGISTRATIONS\\n\\n
You
+ shall not permit content unsuitable for viewing by a minor to be viewed from
+ the main or top-level directory of a .SEXY domain name. For purposes of clarity,
+ content viewed at the main or top-level directory of a .SEXY domain name is
+ the content immediately visible if a user navigates to http://example.sexy
+ or http://www.example.sexy. No restrictions apply to the content at any other
+ page or subdirectory addressed by a .SEXY Registered Name.
\\n
18.
+ COUNTRY CODE TOP LEVEL DOMAINS\\n\\n
You represent
+ and warrant that you meet the eligibility requirements of each ccTLD you apply
+ for. You further agree to be bound by any registry rules, policies, and agreements
+ for that particular ccTLD. These may include, but are not limited to, agreeing
+ to indemnify the ccTLD provider, limiting the liability of the ccTLD provider,
+ and requirements that any disputes be resolved under that particular country's
+ laws.
\\n
(A) PROVISIONS SPECIFIC TO .AU REGISTRATIONS
\\n.au Registrations (to include .au, com.au, net.au and org.au) are governed
+ by the following additional terms and conditions:
\\n
auDA. auDA
+ means .au Domain Administration Limited ACN 079 009 340, the .au domain names
+ administrator. The Registrar acts as agent for auDA for the sole purpose,
+ but only to the extent necessary, to enable auDA to receive the benefit of
+ rights and covenants conferred to it under this Agreement. auDA is an intended
+ third party beneficiary of this agreement.
\\n
\\nauDA Published
+ Policy. auDA Published Policies means those specifications and policies
+ established and published by auDA from time to time at https://www.auda.org.au.
+ \ You must comply with all auDA Published Policies, as if they were incorporated
+ into, and form part of, this Agreement. In the event of any inconsistency
+ between any auDA Published Policy and this Agreement, then the auDA Published
+ Policy will prevail to the extent of such inconsistency. You acknowledge
+ that under the auDA Published Policies: (1) there are mandatory terms and
+ conditions that apply to all domain names; (2) licences, and such terms and
+ conditions are incorporated into, and form part of, this Agreement; (3) You
+ are bound by, and must submit to, the .au Dispute Resolution Policy; and (4)
+ auDA may delete or cancel the registration of a .au domain name.
\\n
\\nauDA's Liabilities and Indemnity. To the fullest extent permitted
+ by law, auDA will not be liable to Registrant for any direct, indirect, consequential,
+ special, punitive or exemplary losses or damages of any kind (including, without
+ limitation, loss of use, loss or profit, loss or corruption of data, business
+ interruption or indirect costs) suffered by Registrant arising from, as a
+ result of, or otherwise in connection with, any act or omission whatsoever
+ of auDA, its employees, agents or contractors. Registrant agrees to indemnify,
+ keep indemnified and hold auDA, its employees, agents and contractors harmless
+ from all and any claims or liabilities, arising from, as a result of, or otherwise
+ in connection with, Registrant's registration or use of its .au domain name.
+ Nothing in this document is intended to exclude the operation of Trade Practices
+ Act 1974.
\\n\\n
(B) PROVISIONS SPECIFIC TO
+ .CA REGISTRATIONS
\\nYou acknowledge and agree that registration
+ of your selected domain name in your first application to CIRA shall not be
+ effective until you have entered into and agreed to be bound by CIRA's Registrant
+ Agreement.
\\n
\\nCIRA Certified Registrar. The
+ registrar shall immediately give notice to you in the event that it is no
+ longer a CIRA Certified Registrar, has had its certification as a CIRA Certified
+ Registrar suspended or terminated, or the Registrar Agreement between CIRA
+ and the Registrar is terminated or expires. CIRA may post notice of such suspension,
+ termination, or expiry on its website and may, if CIRA deems appropriate,
+ give notice to the registrants thereof. In the event that the registrar is
+ no longer a CIRA Certified Registrar, has had its certification as a CIRA
+ Certified Registrar suspended or terminated or in the event the Registrar
+ Agreement between CIRA and the Registrar is terminated or expires, you shall
+ be responsible for changing your Registrar of Record to a new CIRA Certified
+ Registrar within thirty (30) days of the earlier of notice thereof being given
+ to you by (i) the Registrar or (ii) CIRA in accordance with CIRA's then current
+ Registry PRP; provided, however, that if any of your domain name registrations
+ are scheduled to expire within thirty (30) days of the giving of such notice,
+ then you shall have thirty (30) days from the anniversary date of the registration(s),
+ to register with a new CIRA certified registrar and to renew such domain name
+ registration(s) in accordance with the Registry PRP.
\\n
\\nYou
+ acknowledge and agree that should there be insufficient funds prepaid by the
+ registrar in the CIRA Deposit Account to be applied in payment of any fees,
+ CIRA may in its sole discretion stop accepting applications for domain name
+ registrations from the registrar, stop effecting registrations of domain names
+ and transfers, renewals, modifications, and cancellations requested by the
+ registrar and stop performing other billable transactions requested by the
+ registrar not paid in full and CIRA may terminate the Registrar Agreement
+ between CIRA and the Registrar.
\\n
\\n.CA ASCII and IDN
+ domain variants are bundled and reserved for a single registrant.
+ \ Registrants are not required to register all variants in a bundle, but all
+ registered variants must be registered and managed at a single registrar.
+ Each variant registered will incur a registration fee. In addition, when
+ registering multiple .CA domain (ASCII and IDN) variants in a bundle, your
+ registrant information must be identical. If variants
+ are registered at other registrars or if registrant information does not match,
+ it may result in an "unavailable" search result, delayed or failed
+ registration. If information does not match, validation is required and may
+ take up to seven business days and delay availability of domain.
\\n\\n
+ \
(C) PROVISIONS SPECIFIC TO .CN REGISTRATIONS
\\n.CN is a restricted TLD \u2013 applications are subject to both a domain
+ name check and real name verification as required
+ by the People\u2019s Republic of China. Registrations in .CN are therefore
+ subject to the following additional terms:
\\n
Verification, Registration
+ and Activation. If a domain name is not permitted to be registered
+ by the Chinese government, as determined by us, the Registry Operator and/or
+ a 3rd party provider utilized for such services and determinations, in either
+ party\u2019s discretion, the application for registration will not be successful.
+ \ In such event, the name will be deleted and you will be eligible for a refund
+ as further described below.
\\n
If permitted, then the Registration may
+ proceed, but a .CN domain name may not be activated (i.e., it will not resolve
+ in the Internet) unless and until you have submitted (via
+ the process described during registration) valid documents required of us
+ and the Registry to perform real name verification. The following are acceptable
+ forms of documents for the purpose of verification:\\r\\n
\\n
- China:
+ Resident ID, temporary resident ID, business license or organization code
+ certificate
\\r\\n\\r\\n- Hong Kong/Macau: Resident ID, driver\u2019s
+ license, passport or business license
\\r\\n\\r\\n- Singapore: Driver\u2019s
+ license, passport or business license
\\r\\n\\r\\n- Taiwan: Resident
+ ID, driver\u2019s license or business license
\\r\\n\\r\\n- Other Countries/Regions:
+ Driver\u2019s license or passport
\\r\\n
Documents submitted to
+ us are used by us and shared with the Registry solely for the purpose of real
+ name verification, and are otherwise subject to our Privacy
+ Policy. By registering a .CN domain, you expressly agree that your data
+ may be stored on servers in the U.S., or otherwise outside of the People's
+ Republic of China.
\\n
Refunds. Refunds for .CN Registrations
+ will only be allowed where (i) registration of the applied for domain name
+ is not permitted by the Chinese government; or (ii) you notify us of your
+ intent to cancel for any reason within the first five (5) days after the Registration
+ (i.e., after it is deemed permissible by the Chinese government). For the
+ avoidance of doubt, refunds will not be permitted under any circumstances
+ after five (5) days from the date of Registration, including, for example,
+ in the event real name verification is not successful or if the Chinese government
+ determines after Registration that the domain name should not have been registered
+ (and directs us to delete).
\\n\\n
(D) PROVISIONS
+ SPECIFIC TO .JP REGISTRATIONS
\\nRegistration
+ Restrictions. You represent and warrant that you have a local presence
+ in Japan with a home or office address. You agree that certain domain names
+ are reserved and can only be registered by certain parties. These include:
+ (i) TLDs, other than ccTLDs, as determined by ICANN; (ii) geographical-type
+ .JP domain names that are defined as metropolitan, prefectural, and municipal
+ labels; (iii) names of primary and secondary educational organizations; (iv)
+ names of organizations related to Internet management; (v) names required
+ for .JP domain name operations; and (vi) character strings which may be confused
+ with ASCII-converted Japanese domain names. The complete list of .JP Reserved
+ Domains is available here.
+
\\n\\n
\\n\",\"url\":\"http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=reg_sa&pl_id=510456\"},{\"agreementKey\":\"DNPA\",\"title\":\"Domains
+ by Proxy Agreement\",\"content\":\"\\n\\n\\n\\n
\\n Azure - DOMAIN
+ NAME PROXY AGREEMENT\\n
\\n
\\n
+ \ Last Revised: 3/7/2023\\n
\\n\\n
PLEASE READ THIS AGREEMENT
+ CAREFULLY, AS IT CONTAINS IMPORTANT INFORMATION REGARDING YOUR LEGAL RIGHTS
+ AND REMEDIES.
\\n
The Universal Terms of Service Agreement sets forth
+ the general terms and conditions of your use of the Site and the Services.
+ This Domain Name Proxy Agreement (this \u201CService Agreement\u201D)
+ governs your use of Azure\u2019s domain privacy related services (\u201CDBP
+ Services\u201D). Capitalized terms used in this Service Agreement,
+ but not defined, are defined in the Universal Terms of Service Agreement.
+
\\n
You further agree to abide by the terms and conditions promulgated
+ by the Internet Corporation for Assigned Names and Numbers ("ICANN")
+ (including the Uniform Domain Name Dispute Resolution Policy ("Dispute
+ Resolution Policy") and Your Registrar (i.e., the ICANN-accredited
+ person or entity through which You register a domain name).
\\n\\n
+ \
1. Description
+ of Azure's Private Registration Services \\n\\n
When
+ You subscribe to Azure's private registration service through a Azure-affiliated
+ Registrar, Azure will display its contact information in the publicly available
+ "Whois" directory in place of Your information. Azure shall keep
+ Your name, postal address, email address, phone and fax numbers confidential,
+ subject to Section 4 of this Agreement. The following information (and not
+ Your personal information) will be made publicly available in the "Whois"
+ directory as determined by ICANN policy: \\r
\\n
\\r\\n- Azure's
+ name as the proxy Registrant of the domain name and a proxy email address,
+ phone number and postal address for the proxy Registrant's contact information;
+ \ \\r\\n- A proxy postal address and phone number for the domain name registration's
+ technical contact;
\\r\\n- A proxy email address, postal address and
+ phone number for the domain name registration's administrative contact;
+ \ \\r\\n- A proxy email address, postal address and phone number for the
+ domain's name registration's billing contact;
\\r\\n- The primary
+ and secondary domain name servers You designate for the domain name;
+ \ \\r\\n- The domain name's original date of registration and expiration
+ date of the registration; and
\\r\\n- The identity of the Registrar.
\\r\\n
\\r\\n\\n
+ \
2 . FULL BENEFITS OF COMAIN REGISTRATION RETAINED
+ BY YOU \\n\\n
Although Azure will show in the "Whois"
+ directory as the Registrant of each domain name registration You designate,
+ You will retain the full benefits of domain name registration with respect
+ to each such domain name registration, including, subject to Section 4 below:
+
\\n
\\r\\n- The right to sell, transfer or assign each domain
+ name registration, which shall require cancellation of the DBP Services associated
+ with each such domain name registration;
\\r\\n- The right to control
+ the use of each domain name registration, including designating the primary
+ and secondary domain name servers to which each domain name points;
\\r\\n- The
+ right to cancel each domain name registration;
\\r\\n- The right to
+ cancel the DBP Services associated with each domain name registration and/or
+ Your privacy services with Azureso that Your contract information is listed
+ in the \\\"Whois\\\" directory; and
\\r\\n- The right to renew each
+ domain name registration upon its expiration, subject to Your Registrar's
+ applicable rules and policies.
\\r\\n
\\r\\n\\n
3
+ . PERSONAL INFORMATION AND YOUR NOTIFICATION OBLIGATIONS; REPRESENTATION AND
+ WARRANTIES; ACCOUNT SECURITY \\n\\n
Personal
+ Information and Your Notification Obligations \\r
\\n
You agree
+ that for each domain name for which you use DBP Services, You will provide
+ accurate and current information as to: \\r
\\n
- Your name,
+ the email address, postal address, phone and fax numbers for the domain name
+ registration's Registrant contact;
- The email address, postal address,
+ phone and fax numbers for the domain name registration's technical contact;
- The
+ email address, postal address, phone and fax numbers for the domain name registration's
+ administrative contact;
- The email address, postal address, phone and
+ fax numbers for the domain name registration's billing contact; and
- You
+ agree to provide government issued photo identification and/or government
+ issued business identification as required for verification of identity when
+ requested.
\\r\\n
You agree to: \\r
\\n
- Notify Azurewithin three (3) calendar days when any of the personal
+ information You provided upon subscribing to DBP Services, changes;
- Respond
+ within three (3) calendar days to any inquiries made by Azure to determine
+ the validity of personal information provided by You; and
- Timely respond
+ to email messages Azure sends to You regarding correspondence Azure has received
+ that is either addressed to or involves You and/or Your domain name registration,
+ as more fully set forth in Section 5(c) below.
- To allow Azure to act
+ as your Designated Agent (as that term is defined below) in instances when
+ DBP Services are added to or cancelled from your domain name and for the purpose
+ of facilitating a change of registrant request (as further described below).
- As
+ required by ICANN or for certain ccTLDs (.ag, .am, .at, .au, .be, .ca, .cl,
+ .cn, .de, .dk, .es, .fi, .fm, .fr, .gg, .gr, .gs, .in, .it, .jp, .kr, .ms,
+ .my, .no, .nu, .ph, .pl, .pt, .ru, .sc, .se, .sg, .tc, .tk, .tw, .us, .vg,
+ .co.nz, .net.nz, .org.nz, .com.tw, .org.tw, .idv.tw, .com.cn, .net.cn, .org.cn,
+ .jobs, .eu, .com.ag, .net.ag, .org.ag, .com.pl, .net.pl, .org.pl, .biz.pl,
+ .info.pl, .com.sc, .net.sc, .org.sc, .com.au, .net.au, .com.br, .co.jp, .com.sg,
+ .com.ph, .co.za, .co.in, .com.pt, .org.au, .net.in, .org.in, .firm.in, .gen.in,
+ .ind.in, .com.my, .gov.co, .com.es, .com.ve, .org.ve, .com.gr, .net.my, .nom.es,
+ .org.es, .net.br, .org.co, .co.kr, .org.my, .com.ru, .net.ru, .org.ru, .co.ve,
+ .info.ve, .net.ve, .web.ve, .ne.kr, .net.ph, .org.ph, .nyc, .vote, .law, .blackfriday,
+ .hiv, .tattoo, .voto, .pics, .sydney, .flowers, .lol, .amsterdam, .hiphop,
+ .juegos, .link, .guitars, .gift, .click, .nrw, .property, .diet, .help, .sexy,
+ .mom, .audio, .game, .christmas, .photo, .hosting, .melbourne, .re.kr), we
+ are restricted/prohibited from using Domains By Proxy (i.e., Private or Proxy
+ data) for domains under these TLDs. Your information may be made publicly
+ available by the registry operator via Whois or its successor protocol (collectively
+ referred to as the \u201CWhois\\\" Directory) that is beyond, and not subject
+ to, GoDaddy's control.
\\r\\n
It is Your responsibility to keep
+ Your personal information current and accurate at all times.
\\n\\n
+ \
Renewals
\\n
\\nYou agree Azure will
+ arrange for Your Registrar to charge the credit card You have on file with
+ the Registrar, at the Registrar's then current rates.
\\n
\\nIf
+ for any reason Azure and/or the Registrar for Your domain name is unable to
+ charge Your credit card for the full amount of the service provided, or if
+ Azure and/or the Registrar is charged back for any fee it previously charged
+ to the credit card You provided, You agree that Azure and/or the Registrar
+ may, without notice to You, pursue all available remedies in order to obtain
+ payment, including but not limited to immediate cancellation of all services
+ Azure provides to You.
\\n\\n
Representations
+ and Warranties
\\n
\\nYou warrant that all information
+ provided by You to Azure is truthful, complete, current and accurate. You
+ also warrant that You are using Azure's private registration services in good
+ faith and You have no knowledge of Your domain name infringing upon or conflicting
+ with the legal rights of a third party or a third party's trademark or trade
+ name. You also warrant the domain name being registered by Azure on Your behalf
+ will not be used in connection with any illegal activity, or in connection
+ with the transmission of Spam, or that contains or installs any viruses, worms,
+ bugs, Trojan horses or other code, files or programs designed to, or capable
+ or, disrupting, damaging or limiting the functionality of any software or
+ hardware.
\\n\\n
Account Security \\r
\\n
You
+ agree You are entirely responsible for maintaining the confidentiality of
+ Your customer number/login ID and password ("Account Access Information").
+ \ You agree to notify Azure immediately of any unauthorized use of Your account
+ or any other breach of security. You agree Azure will not be liable for any
+ loss that You may incur as a result of someone else using Your Account Access
+ Information, either with or without Your knowledge. You further agree You
+ could be held liable for losses incurred by Azure or another party due to
+ someone else using Your Account Access Information. For security purposes,
+ You should keep Account Access Information in a secure location and take precautions
+ to prevent others from gaining access to Your Account Access Information.
+ \ You agree that You are entirely responsible for all activity in Your account,
+ whether initiated by You, or by others. Azure specifically disclaims liability
+ for any activity in Your account, regardless of whether You authorized the
+ activity.
\\n\\n
Designated Agency and Change
+ of Registrant Information
\\n
\\n\u201CDESIGNATED AGENT\u201D
+ MEANS AN INDIVIDUAL OR ENTITY THAT THE PRIOR REGISTRANT OR NEW REGISTRANT
+ EXPLICITLY AUTHORIZES TO APPROVE A CHANGE OF REGISTRANT REQUEST ON ITS BEHALF.
+ \ IN THE CASE OF DBP SERVICES, A CHANGE OF REGISTRANT REQUEST MAY ALSO ARISE
+ DUE TO INSTANCES WHERE DBP SERVICES ARE ADDED, OR REMOVED, FROM A DOMAIN NAME.
+ \ FOR THE PURPOSE OF FACILITATING ANY SUCH CHANGE REQUEST, AND IN ACCORDANCE
+ WITH ICANN'S CHANGE
+ OF REGISTRANT POLICY, YOU AGREE TO APPOINT Azure AS YOUR DESIGNATED AGENT FOR THE SOLE PURPOSE
+ OF EXPLICITLY CONSENTING TO MATERIAL CHANGES OF REGISTRATION CONTACT INFORMATION
+ ON YOUR BEHALF.
\\n\\n
4 . Azure's
+ Rights to Deny, Suspend, Terminate Service and to Disclose Your Personal Information
+ \\n\\n
You understand and agree that Azure has the absolute right
+ and power, in its sole discretion and without any liability to You whatsoever,
+ to:
- Cancel the privacy service (which means that Your information
+ will be available in the "Whois" directory) and/or reveal Your name
+ and personal information that You provided to Azure
- When required
+ by law, in the good faith belief that such action is necessary in order to
+ conform to the edicts of the law or in the interest of public safety;
- To
+ comply with legal process served upon Azure or in response to a reasonable
+ threat of litigation against Azure (as determined by Azure in its sole and
+ absolute discretion); or
- To comply with ICANN rules, policies, or
+ procedures.
- Resolve any and all third party claims, whether
+ threatened or made, arising out of Your use of a domain name for which Azure
+ is the registrant listed in the "Whois" directory on Your behalf;
+ or
- Take any other action Azure deems necessary:
- In the
+ event you breach any provision of this Agreement or the Azure Anti-Spam Policy;
- To
+ protect the integrity and stability of, and to comply with registration requirements,
+ terms, conditions and policies of, the applicable domain name Registry and/or
+ Registry Provider;
- To comply with any applicable laws, government
+ rules or requirements, subpoenas, court orders or requests of law enforcement;
- To
+ comply with ICANN's Dispute Resolution Policy or ICANN's Change of Registrant
+ Policy;
- To avoid any financial loss or legal liability (civil or criminal)
+ on the part of Azure, its parent companies, subsidiaries, affiliates, shareholders,
+ agents, officers, directors and employees;
- If the domain name for
+ which Azure is the registrant on Your behalf violates or infringes a third
+ party's trademark, trade name or other legal rights; and
- If it comes
+ to Azure's attention that You are using Azure's services in a manner (as determined
+ by Azure in its sole and absolute discretion) that:
- Is illegal, or
+ promotes or encourages illegal activity;
- Promotes, encourages, or
+ engages in the exploitation of children, or any activity related to the proliferation
+ of child sexual abuse material (CSAM);
- Promotes, encourages or engages
+ in terrorism, violence against people, animals, or property;
- Promotes,
+ encourages or engages in any spam or other unsolicited bulk email, or computer
+ or network hacking or cracking;
- Violates the Ryan Haight Online Pharmacy
+ Consumer Protection Act of 2008 or similar legislation, or promotes, encourages
+ or engages in the sale or distribution of prescription medication without
+ a valid prescription;
- Infringes on the intellectual property rights
+ of another User or any other person or entity;
- Violates the privacy
+ or publicity rights of another User or any other person or entity, or breaches
+ any duty of confidentiality that you owe to another User or any other person
+ or entity;
- Interferes with the operation of Azure services;
-
+ Contains or installs any viruses, worms, bugs, Trojan horses or other code,
+ files or programs designed to, or capable of, disrupting, damaging or limiting
+ the functionality of any software or hardware; or
- Contains false
+ or deceptive language, or unsubstantiated or comparative claims, regarding
+ Azure or its services.
You further understand and
+ agree that if Azure is named as a defendant in, or investigated in anticipation
+ of, any legal or administrative proceeding arising out of Your domain name
+ registration or Your use of Azure's services, Your private registration service
+ may be canceled, which means the domain name registration will revert back
+ to You and Your identity will therefore be revealed in the Whois directory
+ as Registrant.
In the event:
- Azure takes any of the actions
+ set forth in subsection i, ii, or iii above or section 5; and/or
- You
+ elect to cancel Azure's services for any reason --
Neither Azure
+ nor your Registrar will refund any fees paid by You whatsoever.\\n
5
+ . COMMUNICATIONS FORWARDING \\n\\n
a.
+ Correspondence Forwarding \\r
\\n
Inasmuch as Azure's name,
+ postal address and phone number will be listed in the Whois directory, You
+ agree Azure will review and forward communications addressed to Your domain
+ name that are received via email, certified or traceable courier mail (such
+ as UPS, FedEx, or DHL), or first class U.S. postal mail. You specifically
+ acknowledge Azure will not forward to You first class postal mail (other than
+ legal notices), "junk" mail or other unsolicited communications
+ (whether delivered through email, fax, postal mail or telephone), and You
+ further authorize Azure to either discard all such communications or return
+ all such communications to sender unopened. You agree to waive any and all
+ claims arising from Your failure to receive communications directed to Your
+ domain name but not forwarded to You by Azure.
\\n
\\n\\n
b.
+ Email Forwarding
\\n
\\nThe Whois directory requires an
+ email address for every purchased domain name registration. When You purchase
+ a private domain registration, Azure creates a private email address for that
+ domain name, "@domainsbyproxy.com". Thereafter, when messages are
+ sent to that private email address, Azure handles them according to the email
+ preference You selected for that particular domain name. You have three (3)
+ email preferences from which to choose. You can elect to:
\\n
\\n
- Have all of the messages forwarded;
- Have all of the messages
+ filtered for Spam and then forwarded; or
- Have none of the messages
+ forwarded.
\\r\\n
\\nAs with all communications, You agree
+ to waive any and all claims arising from Your failure to receive email directed
+ to Your domain name but not forwarded to You by Azure.
\\n\\n
c.
+ Notifications Regarding Correspondence and Your Obligation to Respond
\\n
When
+ Azure receives certified or traceable courier mail or legal notices addressed
+ to Your domain name, in most cases, Azure will attempt to forward the mail
+ to you via email. If You do not respond to the Azure email and/or the correspondence
+ Azure has received regarding Your domain name registration concerns a dispute
+ of any kind or otherwise requires immediate disposition, Azure may immediately
+ reveal Your identity and/or cancel the Azure private registration service
+ regarding either the domain name registration(s) in question. This means the
+ Whois directory will revert to displaying Your name, postal address, email
+ address and phone number that you provided to Azure.
\\n\\n
d.
+ Additional Administrative Fees
\\n
\\nAzure reserves the
+ right to charge You reasonable "administrative fees" or "processing
+ fees" for (i) tasks Azure may perform outside the normal scope of its
+ Services, (ii) additional time and/or costs Azure may incur in providing its
+ Services, and/or (iii) Your non-compliance with the Agreement (as determined
+ by Azure in its sole and absolute discretion). Typical administrative or processing
+ fee scenarios include, but are not limited to, (i) customer service issues
+ that require additional personal time and attention; (ii) disputes that require
+ accounting or legal services, whether performed by Azure staff or by outside
+ firms retained by Azure; (iii) recouping any and all costs and fees, including
+ the cost of DBP Services, incurred by Azure as the result of chargebacks or
+ other payment disputes brought by You, Your bank or Payment Method processor.
+ \ These administrative fees or processing fees will be billed to the Payment
+ Method You have on file with Your Registrar.
\\n
You agree to waive the
+ right to trial by jury in any proceeding that takes place relating to or arising
+ out of this Agreement.
\\n\\n
6 . LIMITATIONS
+ OF LIABILITY \\n\\n
UNDER NO CIRCUMSTANCES SHALL
+ Azure BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, PUNITIVE, SPECIAL, OR CONSEQUENTIAL DAMAGES
+ FOR ANY REASON WHATSOEVER RELATED TO THIS AGREEMENT, YOUR DOMAIN NAME REGISTRATION,
+ DBP SERVICES, USE OR INABILITY TO USE THE Azure
+ WEBSITE OR THE MATERIALS AND CONTENT OF THE WEBSITE OR ANY OTHER WEBSITES
+ LINKED TO THE Azure WEBSITE
+ OR YOUR PROVISION OF ANY PERSONALLY IDENTIFIABLE INFORMATION TO Azure
+ OR ANY THIRD PARTY. THIS LIMITATION APPLIES REGARDLESS OF WHETHER THE ALLEGED
+ LIABILITY IS BASED ON CONTRACT, TORT, WARRANTY, NEGLIGENCE, STRICT LIABILITY
+ OR ANY OTHER BASIS, EVEN IF Azure
+ HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR SUCH DAMAGES WERE REASONABLY
+ FORESEEABLE. BECAUSE CERTAIN JURISDICTIONS DO NOT PERMIT THE LIMITATION OR
+ ELIMINATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, Azure'S
+ LIABILITY IN SUCH JURISDICTIONS SHALL BE LIMITED TO THE SMALLEST AMOUNT PERMITTED
+ BY LAW.
\\n
\\nYOU FURTHER UNDERSTAND AND AGREE THAT Azure
+ DISCLAIMS ANY LOSS OR LIABILITY RESULTING FROM:
- THE INADVERTENT
+ DISCLOSURE OR THEFT OF YOUR PERSONAL INFORMATION;
- ACCESS DELAYS OR
+ INTERRUPTIONS TO OUR WEBSITE OR THE WEBSITES OF OUR AFFILIATED REGISTRARS;
- DATA
+ NON-DELIVERY OF MIS-DELIVERY BETWEEN YOU AND Azure;
- THE
+ FAILURE FOR WHATEVER REASON TO RENEW A PRIVATE DOMAIN NAME REGISTRATION;
- THE
+ UNAUTHORIZED USE OF YOUR Azure
+ ACCOUNT OR ANY OF DBP SERVICES;
- ERRORS, OMISSIONS OR MISSTATEMENTS
+ BY Azure;
- DELETION
+ OF, FAILURE TO STORE, FAILURE TO PROCESS OR ACT UPON EMAIL MESSAGES FORWARDED
+ TO EITHER YOU OR YOUR PRIVATE DOMAIN NAME REGISTRATION;
- PROCESSING
+ OF UPDATED INFORMATION REGARDING YOUR Azure
+ ACCOUNT; AND/OR
- ANY ACT OR OMISSION CAUSED BY YOU OR YOUR AGENTS (WHETHER
+ AUTHORIZED BY YOU OR NOT).
\\n\\n
7
+ . INDEMNITY \\n\\n
You agree to release, defend, indemnify
+ and hold harmless Azure, its parent companies, subsidiaries, affiliates, shareholders,
+ agents, directors, officers and employees and Your Registrar, from and against
+ any and all claims, demands, liabilities, losses, damages or costs, including
+ reasonable attorneys' fees, arising out of or related in any way to this Agreement,
+ the services provided hereunder by Azure, the Azure website, Your account
+ with Azure, Your use of Your domain name registration, and/or disputes arising
+ in connection with the dispute
+ policy.
\\n
8 . Azure
+ WARRANTY DISCLAIMER \\n\\n
Azure,
+ ITS PARENT COMPANIES, SUBSIDIARIES, AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS,
+ OFFICERS, AND EMPLOYEES EXPRESSLY DISCLAIM ALL REPRESENTATIONS AND WARRANTIES
+ OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, THE SERVICE PROVIDED HEREUNDER,
+ THE Azure WEBSITE OR ANY WEBSITES LINKED TO THE Azure WEBSITE, WHETHER EXPRESS
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. ALL DBP SERVICES, AS
+ WELL AS THE Azure WEBSITE, ARE PROVIDED "AS IS". YOUR SUBSCRIPTION
+ TO AND USE OF DBP SERVICES AND ITS WEBSITE ARE ENTIRELY AT YOUR RISK. SOME
+ JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OF IMPLIED WARRANTIES, IN WHICH
+ EVENT THE FOREGOING DISCLAIMER MAY NOT APPLY TO YOU.
\\n
+ \
9 .COPYRIGHT AND TRADEMARK \\n\\n
+ \
You understand and agree that all content and materials contained
+ in this Agreement, the Privacy
+ Policy and the Azure
+ website, are protected by the various copyright, patent, trademark, service
+ mark and trade secret laws of the United States, as well as any other applicable
+ proprietary rights and laws, and that Azure expressly reserves its rights
+ in and to all such content and materials.
\\n
\\nYou further understand
+ and agree You are prohibited from using, in any manner whatsoever, any of
+ the afore-described content and materials without the express written permission
+ of Azure. No license or right under any copyright, patent, trademark, service
+ mark or other proprietary right or license is granted to You or conferred
+ upon You by this Agreement or otherwise.
\\n\\n
10
+ . MISCELLANEOUS PROVISIONS \\n\\n
a.
+ Severability; Construction; Entire Agreement
\\n
\\nIf
+ any part of this Agreement shall be held to be illegal, unenforceable or invalid,
+ in whole or in part, such provision shall be modified to the minimum extent
+ necessary to make it legal, enforceable and valid, and the legality, enforceability
+ and validity of the remaining provisions of this Agreement shall not be affected
+ or impaired. The headings herein will not be considered a part of this Agreement.
+ You agree this Agreement, including the policies it incorporates by reference,
+ constitute the complete and only Agreement between You and Azure regarding
+ the services contemplated herein.
\\n\\n
f. Term
+ of Agreement; Survival
\\n
\\nThe terms of this Agreement
+ shall continue in full force and effect as long as Azure is the Registrant
+ for any domain name on Your behalf. Sections 5 (Communications Forwarding),
+ 6 (Limitation of Liability), 7 (Indemnity), 8 (Warranty Disclaimer) and 10
+ (Miscellaneous Provisions) shall survive any termination or expiration of
+ this Agreement.
\\n\\n
b. Governing Law; Venue;
+ Waiver Of Trial By Jury
\\n
\\nThis Agreement shall be
+ governed in all respects by the laws and judicial decisions of Maricopa County,
+ Arizona, excluding its conflicts of laws rules. Except as provided immediately
+ below, You agree that any action relating to or arising out of this Agreement,
+ shall be brought exclusively in the courts of Maricopa County, Arizona. For
+ the adjudication of domain name registration disputes, you agree to submit
+ to the exclusive jurisdiction and venue of the U.S. District Court for the
+ District of Arizona located in Phoenix, Arizona. You agree to waive the right
+ to trial by jury in any proceeding, regardless of venue, that takes place
+ relating to or arising out of this Agreement.
\\n\\n
c.
+ Notices
\\n
\\nAll notices from Azure to You will be sent
+ to the email address You provided to Azure. Notices by email shall be deemed
+ effective twenty-four (24) hours after the email is sent by Azure, unless
+ Azure receives notice that the email address is invalid, in which event Azure
+ may give You notice via first class or certified mail, return receipt requested.
+ All notices from You to Azure shall be sent via certified mail, return receipt
+ requested or traceable courier to: \\r
\\n
Domains By Proxy, LLC
\\nAttn: General Counsel
\\n2150 E. Warner Rd.
\\nTempe, AZ 85284
+ USA
\\n
Notices sent via certified mail or traceable courier shall be
+ deemed effective five (5) days after the date of mailing.
\\n\\n
+ \
d. Insurance
\\n
\\nIn the unlikely
+ event You lose Your domain name registration to a third party solely as a
+ result of Azure's negligent actions (and absent fraud or other negligent or
+ willful misconduct committed by a third party), You may be insured against
+ such loss through Azure's Professional Liability Insurance Policy, which is
+ currently underwritten by American International Insurance Company. Of course,
+ every claim is subject to the then-carrier's investigation into the facts
+ and circumstances surrounding such claim. In the event You have reason to
+ believe that circumstances exist which warrant the filing of an insurance
+ claim, please send a written notice (specifying the basis for such claim),
+ via certified mail, return receipt requested, to:
\\n
\\nAzure
\\r\\nAttn:
+ Insurance Claims
\\n2150 E. Warner Rd.
\\nTempe, AZ 85284 USA
\\n\\n
+ \
e. Indemnification
\\n
\\nIn the unlikely
+ event You lose Your domain name registration to a third party solely as a
+ result of Azure's willful misconduct, Your Registrar (the "Indemnifying
+ Party") will indemnify and hold You harmless against any losses, damages
+ or costs (including reasonable attorneys' fees) resulting from any claim,
+ action, proceeding, suit or demand arising out of or related to the loss of
+ Your domain name registration. Such indemnification obligations under this
+ Section 10(e) are conditioned upon the following:
- That You promptly
+ give both Azure and the Indemnifying Party written notice of the claim, demand,
+ or action and provide reasonable assistance to the Indemnifying Party, at
+ its cost and expense, in connection therewith, and
- That the Indemnifying
+ Party has the right, at its option, to control and direct the defense to any
+ settlement of such claim, demand, or action.
\\r\\n
Any notice
+ concerning indemnification shall, with respect to Azure, be sent in accordance
+ with Section 10(c) of this Agreement. With respect to Your Registrar, notices
+ regarding indemnification should be sent in accordance with the notification
+ provisions contained in Your Registrar's Domain Name Registration Agreement.
+ \
\\n\\n
\\n\",\"url\":\"http://www.secureserver.net/agreements/ShowDoc.aspx?pageid=domain_nameproxy&pl_id=510456\"}],\"nextLink\":null,\"id\":null}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '123365'
+ content-type:
+ - application/json
+ date:
+ - Mon, 27 Mar 2023 06:49:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/dnszones", "name": "containerapp-env000002.com",
+ "apiVersion": "2018-05-01", "location": "global", "dependsOn": [], "properties":
+ {"zoneType": "Public"}}, {"type": "Microsoft.DomainRegistration/domains", "name":
+ "containerapp-env000002.com", "apiVersion": "2018-02-01", "location": "global",
+ "dependsOn": ["[resourceId(''Microsoft.Network/dnszones'', ''containerapp-env000002.com'')]"],
+ "tags": {}, "properties": {"consent": {"agreementKeys": ["DNRA", "DNPA"], "agreedBy":
+ "10.172.50.173", "agreedAt": "2023-03-27 06:49:52.133561"}, "ContactAdmin":
+ {"AddressMailing": {"Address1": "One Microsoft Way", "Address2": "", "City":
+ "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"}, "Email":
+ "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane", "NameLast":
+ "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"}, "ContactBilling":
+ {"AddressMailing": {"Address1": "One Microsoft Way", "Address2": "", "City":
+ "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"}, "Email":
+ "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane", "NameLast":
+ "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"}, "ContactRegistrant":
+ {"AddressMailing": {"Address1": "One Microsoft Way", "Address2": "", "City":
+ "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"}, "Email":
+ "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane", "NameLast":
+ "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"}, "ContactTech":
+ {"AddressMailing": {"Address1": "One Microsoft Way", "Address2": "", "City":
+ "Seattle", "Country": "US", "PostalCode": "98109", "State": "WA"}, "Email":
+ "testemail@hotmail.com", "Fax": "", "JobTitle": "", "NameFirst": "Jane", "NameLast":
+ "Doe", "NameMiddle": "", "Organization": "", "Phone": "+1.2061234567"}, "privacy":
+ 1, "autoRenew": 1, "dnsType": "AzureDns", "targetDnsType": "AzureDns", "dnsZoneId":
+ "[resourceId(''Microsoft.Network/dnszones'', ''containerapp-env000002.com'')]"},
+ "resources": []}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2316'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domain_deploy_dGiN5wqBUaiRule8JYUmVWlpKJQspkDW","name":"domain_deploy_dGiN5wqBUaiRule8JYUmVWlpKJQspkDW","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7971409481177376509","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-03-27T06:49:59.955306Z","duration":"PT0.0004374S","correlationId":"ac4d0030-eb93-400e-90cc-6718cbd95b85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"dnszones","locations":["global"]}]},{"namespace":"Microsoft.DomainRegistration","resourceTypes":[{"resourceType":"domains","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnszones/containerapp-env000002.com","resourceType":"Microsoft.Network/dnszones","resourceName":"containerapp-env000002.com"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DomainRegistration/domains/containerapp-env000002.com","resourceType":"Microsoft.DomainRegistration/domains","resourceName":"containerapp-env000002.com"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domain_deploy_dGiN5wqBUaiRule8JYUmVWlpKJQspkDW/operationStatuses/08585217070892192922?api-version=2021-04-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1292'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:50:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585217070892192922?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:50:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585217070892192922?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:50:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585217070892192922?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:51:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585217070892192922?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:51:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585217070892192922?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585217070892192922?api-version=2021-04-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice domain create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --hostname --contact-info --accept-terms
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/domain_deploy_dGiN5wqBUaiRule8JYUmVWlpKJQspkDW","name":"domain_deploy_dGiN5wqBUaiRule8JYUmVWlpKJQspkDW","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7971409481177376509","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-03-27T06:52:23.7321207Z","duration":"PT2M23.7772521S","correlationId":"ac4d0030-eb93-400e-90cc-6718cbd95b85","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"dnszones","locations":["global"]}]},{"namespace":"Microsoft.DomainRegistration","resourceTypes":[{"resourceType":"domains","locations":["global"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnszones/containerapp-env000002.com","resourceType":"Microsoft.Network/dnszones","resourceName":"containerapp-env000002.com"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DomainRegistration/domains/containerapp-env000002.com","resourceType":"Microsoft.DomainRegistration/domains","resourceName":"containerapp-env000002.com"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DomainRegistration/domains/containerapp-env000002.com"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnszones/containerapp-env000002.com"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1654'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp-env000002.com/txt/asuid.devtest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"code":"NotFound","message":"The resource record ''asuid.devtest''
+ does not exist in resource group ''clitest.rg000001'' of subscription ''23f95f0e-e782-47be-9f97-56035ec10e42''."}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '175'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:35 GMT
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"]}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp-env000002.com/txt/asuid.devtest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest.rg000001\/providers\/Microsoft.Network\/dnszones\/containerapp-env000002.com\/TXT\/asuid.devtest","name":"asuid.devtest","type":"Microsoft.Network\/dnszones\/TXT","etag":"52ec5dd3-4da0-4efb-b2df-a46833647857","properties":{"fqdn":"asuid.devtest.containerapp-env000002.com.","TTL":3600,"TXTRecords":[{"value":["D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"]}],"targetResource":{},"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '518'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:36 GMT
+ etag:
+ - 52ec5dd3-4da0-4efb-b2df-a46833647857
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp-env000002.com/txt/asuid.clitest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"code":"NotFound","message":"The resource record ''asuid.clitest''
+ does not exist in resource group ''clitest.rg000001'' of subscription ''23f95f0e-e782-47be-9f97-56035ec10e42''."}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '175'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:37 GMT
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: '{"properties": {"TTL": 3600, "TXTRecords": [{"value": ["D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"]}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network dns record-set txt add-record
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -z -n -v
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-dns/8.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/dnsZones/containerapp-env000002.com/txt/asuid.clitest?api-version=2018-05-01
+ response:
+ body:
+ string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest.rg000001\/providers\/Microsoft.Network\/dnszones\/containerapp-env000002.com\/TXT\/asuid.clitest","name":"asuid.clitest","type":"Microsoft.Network\/dnszones\/TXT","etag":"8f5f8fc0-65b5-444e-8be5-5c31cfc495a0","properties":{"fqdn":"asuid.clitest.containerapp-env000002.com.","TTL":3600,"TXTRecords":[{"value":["D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"]}],"targetResource":{},"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - private
+ content-length:
+ - '518'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:39 GMT
+ etag:
+ - 8f5f8fc0-65b5-444e-8be5-5c31cfc495a0
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:49:27.0814847"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1114'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": null, "properties": {"customDomainConfiguration":
+ {"certificateValue": "MIIEAgIBAzCCA8gGCSqGSIb3DQEHAaCCA7kEggO1MIIDsTCCAqcGCSqGSIb3DQEHBqCCApgwggKUAgEAMIICjQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQI01NCarGYtekCAggAgIICYO++bB7gJ40jFPPUJPCYJfVC4q4zH+11fvSJE8DbNOGeJURKiu2UjOwVu7IwAW9ioBpuAq0uOVoIQfyn5Dju51nMXpJ8/217yn0MLJYEuX5w+Y7ZxfV2tWWDLsLR/8y3t5MtWCLWdsDM9gwfYJIqpTDGxJroVNZlhth38g7fDdM1MqsbgGphsZ7r9UG9njJEuqSFi1HBJLO/AdCB7KtkV5IHeCoLJhtKdRMcveN4A1aLe8XDOO3fdJX/rG8rYfO6MQRLv5Abv4IV7w5VuRpBYpK3hZiyUFviGW8uUqyto9LYQn7soMJlJGy8gUxRuN1FZ6YC68efA9KvaBqj52bZxque3OSCgJ4kqSA84OJF39Z2HbiNcsxZH2/TrLQseB5iD2l0u30LORZOj59SURzUI3gKlnpn0MKA2gbjF5xnwRZJ+psA6JrEpVZFKEFt+kqDG9VcJPXUmxFX2OcYwrTmW0yskJ+Jk7aOpzFUUDzkUnKpJo6B8Xlx1259cOUDmTwZ/vGBD3cw2LyA0eA4m6UAvCJEqIZn0vM2zgwhImPJuDuiFNYrLg/VGD6bDDJ0to3MOE/ZEgL4a4ucL8Ux9O92I7mgs6B/4JHvMhR9wnEERGsUWcg0Hq1yQ4B+h+pf7KUJQSjyoGUMAoGmnS7OCHSaRuGreVvvh9emvYLGlfSufS0+uUrUE95tXY00U7TqC7Pfrj1N1S4Y1tnzdqfpHlTX3WFlAjwgTEfswl/cTnbWOIjHAsQY0m84daafuYguHYBiQRxr3+PpKSDn4FI6oNLOlrFnNBU/uoEFpfbafz6KH4F1MIIBAgYJKoZIhvcNAQcBoIH0BIHxMIHuMIHrBgsqhkiG9w0BDAoBAqCBtDCBsTAcBgoqhkiG9w0BDAEDMA4ECFCAHutr08hCAgIIAASBkNownnuFh+JaMfJqyH0XRC6eAG4ZSu+zdQdT3QvSRbeIckErq3o3+6PRAK/JtaPD2/34Z7RuRpRJHCrfWOeWjXevSkPveJt5+K92OIHBRRj+D8bUbH9O7zgyX5QiKqwpzv9/VPZQNeBZXG+ypHO0ENCGmClbR3lVh0ixZ51GowWFredhUj/2eNgChqa3EZPjAzElMCMGCSqGSIb3DQEJFTEWBBRsnjtpxMDVDcc11gJ9B1psUArvYzAxMCEwCQYFKw4DAhoFAAQUS7W42uftp0S8ib7oQm8h/tJNVWQECBW3SAPuFZI1AgIIAA==",
+ "dnsSuffix": "devtest.containerapp-env000002.com", "certificatePassword": "test12"}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1567'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Mon, 27 Mar 2023 06:52:44 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:52:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"InProgress","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/99c8bfbe-cfc3-44bd-925d-e4507160d922","name":"99c8bfbe-cfc3-44bd-925d-e4507160d922","status":"Succeeded","startTime":"2023-03-27T06:52:44.3905117"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '283'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix --certificate-file --certificate-password
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:52:43.0392236"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":"devtest.containerapp-env000002.com","thumbprint":"6C9E3B69C4C0D50DC735D6027D075A6C500AEF63","subjectName":"CN=antdomaincerttest.com,
+ O=MS, L=Redmond, S=WA, C=US","expirationDateUtc":"2023-04-20T04:52:01"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1331'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:52:43.0392236"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":"devtest.containerapp-env000002.com","thumbprint":"6C9E3B69C4C0D50DC735D6027D075A6C500AEF63","subjectName":"CN=antdomaincerttest.com,
+ O=MS, L=Redmond, S=WA, C=US","expirationDateUtc":"2023-04-20T04:52:01"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1331'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:52:43.0392236"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":"devtest.containerapp-env000002.com","thumbprint":"6C9E3B69C4C0D50DC735D6027D075A6C500AEF63","subjectName":"CN=antdomaincerttest.com,
+ O=MS, L=Redmond, S=WA, C=US","expirationDateUtc":"2023-04-20T04:52:01"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1331'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": null, "properties": {"customDomainConfiguration":
+ {"dnsSuffix": "clitest.containerapp-env000002.com"}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '134'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Mon, 27 Mar 2023 06:53:50 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:53:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"InProgress","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/a4840b47-5b80-4d01-842a-974146fb9c70","name":"a4840b47-5b80-4d01-842a-974146fb9c70","status":"Succeeded","startTime":"2023-03-27T06:53:50.8481954"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '283'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --dns-suffix
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:53:49.4923388"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":"clitest.containerapp-env000002.com","thumbprint":"6C9E3B69C4C0D50DC735D6027D075A6C500AEF63","subjectName":"CN=antdomaincerttest.com,
+ O=MS, L=Redmond, S=WA, C=US","expirationDateUtc":"2023-04-20T04:52:01"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1331'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/containerapp-env000002","name":"containerapp-env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:49:27.0814847","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:53:49.4923388"},"properties":{"provisioningState":"Succeeded","defaultDomain":"redrock-9a2d6d70.eastus.azurecontainerapps.io","staticIp":"20.121.107.251","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"75cc45ad-bd14-40e3-969b-2ded6a9335a5"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/containerapp-env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":"clitest.containerapp-env000002.com","thumbprint":"6C9E3B69C4C0D50DC735D6027D075A6C500AEF63","subjectName":"CN=antdomaincerttest.com,
+ O=MS, L=Redmond, S=WA, C=US","expirationDateUtc":"2023-04-20T04:52:01"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1331'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:54:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py
index cf61db504f6..aa6afc2b80a 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_commands.py
@@ -413,6 +413,13 @@ def test_containerapp_env_update_custom_domains(self, resource_group):
JMESPathCheck('properties.customDomainConfiguration.dnsSuffix', hostname_1),
])
+ self.cmd('containerapp env update -g {} -n {} --dns-suffix {}'.format(resource_group, env_name, hostname_2))
+
+ self.cmd(f'containerapp env show -n {env_name} -g {resource_group}', checks=[
+ JMESPathCheck('name', env_name),
+ JMESPathCheck('properties.customDomainConfiguration.dnsSuffix', hostname_2),
+ ])
+
@AllowLargeResponse(8192)
@ResourceGroupPreparer(location="northeurope")
From 6a51069a26c08345e9064437b1cec37be34a2e8d Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 15:15:32 +0800
Subject: [PATCH 03/12] recording fix
---
.../test_containerapp_create_with_yaml.yaml | 22 +++++------
.../test_containerapp_env_logs_e2e.yaml | 38 +++++++++----------
2 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
index d91dbabcb7c..b43c9ccaccb 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
@@ -399,7 +399,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -526,7 +526,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -651,7 +651,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -776,7 +776,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7866,7 +7866,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8092,7 +8092,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8494,7 +8494,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8671,7 +8671,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8796,7 +8796,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8973,7 +8973,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -9365,7 +9365,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml
index e846744fea1..778f6b687bd 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_env_logs_e2e.yaml
@@ -186,7 +186,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -311,7 +311,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -436,7 +436,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -561,7 +561,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -1053,7 +1053,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -1229,7 +1229,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -2734,7 +2734,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -4030,7 +4030,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5230,7 +5230,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5406,7 +5406,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5531,7 +5531,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5656,7 +5656,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -5781,7 +5781,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -6937,7 +6937,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7159,7 +7159,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7284,7 +7284,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7409,7 +7409,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -7534,7 +7534,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
@@ -8739,7 +8739,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
From 804723501f4171b63cc32d76270b4490e60e4172 Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 15:26:54 +0800
Subject: [PATCH 04/12] recording fix
---
.../latest/recordings/test_containerapp_create_with_yaml.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
index b43c9ccaccb..e6819475872 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
@@ -901,7 +901,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
@@ -1057,7 +1057,7 @@ interactions:
User-Agent:
- AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2021-04-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
From c6f2b693d5ac65b3fefdc767c51f5261479859df Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 15:50:04 +0800
Subject: [PATCH 05/12] live only
---
...st_containerapp_create_with_vent_yaml.yaml | 9529 +++++++++++++++++
.../test_containerapp_create_with_yaml.yaml | 8778 ++-------------
.../latest/test_containerapp_commands.py | 121 +
3 files changed, 10681 insertions(+), 7747 deletions(-)
create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml
new file mode 100644
index 00000000000..e6819475872
--- /dev/null
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml
@@ -0,0 +1,9529 @@
+interactions:
+- request:
+ body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes":
+ ["14.0.0.0/23"]}, "enableDdosProtection": false, "enableVmProtection": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '152'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
+ \ \"etag\": \"W/\\\"3f8d2641-edd1-41e0-a8c1-ebaf5f234c38\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
+ \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '614'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - dd2ea7d7-221a-4e4a-ac3b-a7a1bc1e75e9
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"InProgress\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '30'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 7f0fc304-08a6-4a7f-98d8-5a6799a165fb
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c9ef9e5e-48b6-4079-bf56-8ccf61f51f24
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
+ \ \"etag\": \"W/\\\"e98f03a9-80c0-47c5-b88f-31369d9ab961\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
+ \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '615'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:53 GMT
+ etag:
+ - W/"e98f03a9-80c0-47c5-b88f-31369d9ab961"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c9d78fa7-c15d-4556-9f57-83468516e7b5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "sub", "properties": {"addressPrefix": "14.0.0.0/23"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '63'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
+ \ \"etag\": \"W/\\\"ecd1dbb4-03db-43d5-afcd-84e802325583\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '524'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 31c915f1-c5d3-441c-951a-3fb12dd2d934
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 612a6de0-d4b5-480f-b4d5-637c54bfa62f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
+ \ \"etag\": \"W/\\\"ede0f198-5ddb-461f-9ff2-88ba246f1446\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '525'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:56 GMT
+ etag:
+ - W/"ede0f198-5ddb-461f-9ff2-88ba246f1446"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - e9661b48-3953-44cb-9545-f5bf992bfc65
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ connection:
+ - close
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:22:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
+ US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
+ US 2","UK South","Canada Central","Central India","Japan East","Australia
+ East","Korea Central","France Central","Central US","East US 2","East Asia","West
+ US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
+ East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
+ West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
+ Central","France South","South India","Korea South","Jio India Central","Jio
+ India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
+ US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Switzerland North","Switzerland West","Germany West Central","Australia
+ Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
+ East","Norway West","France South","South India","Korea South","Jio India
+ Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
+ Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
+ Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12653'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
+ US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
+ US 2","UK South","Canada Central","Central India","Japan East","Australia
+ East","Korea Central","France Central","Central US","East US 2","East Asia","West
+ US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
+ East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
+ West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
+ Central","France South","South India","Korea South","Jio India Central","Jio
+ India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
+ US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Switzerland North","Switzerland West","Germany West Central","Australia
+ Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
+ East","Norway West","France South","South India","Korea South","Jio India
+ Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
+ Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
+ Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12653'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "properties": {"publicNetworkAccessForIngestion":
+ "Enabled", "publicNetworkAccessForQuery": "Enabled"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '887'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:07 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '887'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: '{"primarySharedKey":"JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw==","secondarySharedKey":"5UM95FQhLx3adsCaVa40qd+2Cj976vf5XU8TPHemKxDRhdTj4kNKAgnL9ITCoSPnfIopWMlPd9yNqvRmj2rlAw=="}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
+ {"daprAIInstrumentationKey": null, "vnetConfiguration": {"infrastructureSubnetId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub",
+ "runtimeSubnetId": null, "dockerBridgeCidr": null, "platformReservedCidr": null,
+ "platformReservedDnsIP": null, "internal": true}, "appLogsConfiguration": {"destination":
+ "log-analytics", "logAnalyticsConfiguration": {"customerId": "6a164e83-41be-48ef-b72e-586abe3673cf",
+ "sharedKey": "JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw=="}},
+ "customDomainConfiguration": null, "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '758'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1371'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:23:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:24:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:25:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:26:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:27:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:28:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:29:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"Succeeded","startTime":"2023-03-27T06:23:15.9736951"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '283'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1395'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ connection:
+ - close
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1395'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2022-01-31-preview
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '464'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:56 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1395'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:30:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": {"type":
+ "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":
+ {}}, "principalId": null, "tenantId": null}, "properties": {"environmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ "configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
+ {"external": true, "targetPort": 80, "exposedPort": 3000, "transport": "Tcp",
+ "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
+ "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
+ "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
+ null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
+ {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1369'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '2370'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '699'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"InProgress","startTime":"2023-03-27T06:31:05.6744705"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"Succeeded","startTime":"2023-03-27T06:31:05.6744705"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2484'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2484'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2484'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2484'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004/listSecrets?api-version=2022-10-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "properties": {"environmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ "configuration": {"activeRevisionsMode": "Multiple", "ingress": {"external":
+ true, "targetPort": 80, "exposedPort": 9551, "transport": "Tcp", "traffic":
+ [{"weight": 100, "latestRevision": true}]}}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "env": [{"name": "HTTP_PORT", "value": "80"}], "resources":
+ {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas": 1, "maxReplicas":
+ 3}}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '690'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Mon, 27 Mar 2023 06:31:28 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '699'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Mon, 27 Mar 2023 06:31:30 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2484'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2484'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 27 Mar 2023 06:31:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
index e6819475872..1a3767bdbae 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
@@ -1,64 +1,60 @@
interactions:
- request:
- body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes":
- ["14.0.0.0/23"]}, "enableDdosProtection": false, "enableVmProtection": false}}'
+ body: '{"location": "eastus", "properties": {"retentionInDays": 30, "sku": {"name":
+ "PerGB2018"}}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet create
+ - monitor log-analytics workspace create
Connection:
- keep-alive
Content-Length:
- - '152'
+ - '91'
Content-Type:
- application/json
ParameterSetName:
- - --address-prefixes -g -n
+ - -g -n -l
User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
- \ \"etag\": \"W/\\\"3f8d2641-edd1-41e0-a8c1-ebaf5f234c38\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
- [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
- \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
- \ }\r\n}"
+ string: '{"properties":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-21T05:19:03.5264611Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-21T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-21T05:19:03.5264611Z","modifiedDate":"2023-03-21T05:19:03.5264611Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
- azure-asyncnotification:
- - Enabled
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
cache-control:
- no-cache
content-length:
- - '614'
+ - '851'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:22:41 GMT
+ - Tue, 21 Mar 2023 05:19:05 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
pragma:
- no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
- x-ms-arm-service-request-id:
- - dd2ea7d7-221a-4e4a-ac3b-a7a1bc1e75e9
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
+ x-powered-by:
+ - ASP.NET
status:
code: 201
message: Created
@@ -70,83 +66,39 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -g -n
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '30'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - 7f0fc304-08a6-4a7f-98d8-5a6799a165fb
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet create
+ - monitor log-analytics workspace create
Connection:
- keep-alive
ParameterSetName:
- - --address-prefixes -g -n
+ - -g -n -l
User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ string: '{"properties":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-21T05:19:03.5264611Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-21T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-21T05:19:03.5264611Z","modifiedDate":"2023-03-21T05:19:03.5264611Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
cache-control:
- no-cache
content-length:
- - '29'
+ - '852'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:22:52 GMT
+ - Tue, 21 Mar 2023 05:19:35 GMT
expires:
- '-1'
pragma:
- no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -155,221 +107,54 @@ interactions:
- Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-arm-service-request-id:
- - c9ef9e5e-48b6-4079-bf56-8ccf61f51f24
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
- request:
body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -g -n
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
- \ \"etag\": \"W/\\\"e98f03a9-80c0-47c5-b88f-31369d9ab961\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
- [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
- \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
- \ }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '615'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:53 GMT
- etag:
- - W/"e98f03a9-80c0-47c5-b88f-31369d9ab961"
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - c9d78fa7-c15d-4556-9f57-83468516e7b5
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "sub", "properties": {"addressPrefix": "14.0.0.0/23"}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - network vnet subnet create
+ - monitor log-analytics workspace get-shared-keys
Connection:
- keep-alive
Content-Length:
- - '63'
- Content-Type:
- - application/json
- ParameterSetName:
- - --address-prefixes -n -g --vnet-name
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
- \ \"etag\": \"W/\\\"ecd1dbb4-03db-43d5-afcd-84e802325583\\\"\",\r\n \"properties\":
- {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
- \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
- \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
- \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
- headers:
- azure-asyncnotification:
- - Enabled
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
- cache-control:
- - no-cache
- content-length:
- - '524'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - 31c915f1-c5d3-441c-951a-3fb12dd2d934
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet subnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -n -g --vnet-name
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '29'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - 612a6de0-d4b5-480f-b4d5-637c54bfa62f
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet subnet create
- Connection:
- - keep-alive
+ - '0'
ParameterSetName:
- - --address-prefixes -n -g --vnet-name
+ - -g -n
User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
- \ \"etag\": \"W/\\\"ede0f198-5ddb-461f-9ff2-88ba246f1446\\\"\",\r\n \"properties\":
- {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
- \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
- \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
- \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ string: '{"primarySharedKey":"+o0XVYYl+BpPUGu9yW2c9nzD9PDSrD5MdWGD+vTdj+eqfh3aya3pinU/S3TPWyT+aKgzAoNnVasWzHN2Yv/KrA==","secondarySharedKey":"rWsKWoEP5zdEfpbv9hZErr0e1m3uNXyW0xMdrfFnGn5Zjy56DRDGv3WMrnE5TtBLjYDEpDVX/VlBHHclcHbNFA=="}'
headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
cache-control:
- no-cache
content-length:
- - '525'
+ - '223'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:22:56 GMT
- etag:
- - W/"ede0f198-5ddb-461f-9ff2-88ba246f1446"
+ - Tue, 21 Mar 2023 05:19:41 GMT
expires:
- '-1'
pragma:
- no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
@@ -378,8 +163,10 @@ interactions:
- Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-arm-service-request-id:
- - e9661b48-3953-44cb-9545-f5bf992bfc65
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
@@ -395,108 +182,96 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
- connection:
- - close
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:22:57 GMT
+ - Tue, 21 Mar 2023 05:19:41 GMT
expires:
- '-1'
pragma:
@@ -522,106 +297,96 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:22:58 GMT
+ - Tue, 21 Mar 2023 05:19:42 GMT
expires:
- '-1'
pragma:
@@ -647,106 +412,96 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:22:59 GMT
+ - Tue, 21 Mar 2023 05:19:42 GMT
expires:
- '-1'
pragma:
@@ -772,6576 +527,115 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
- US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
- US 2","UK South","Canada Central","Central India","Japan East","Australia
- East","Korea Central","France Central","Central US","East US 2","East Asia","West
- US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
- East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
- West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
- Central","France South","South India","Korea South","Jio India Central","Jio
- India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
- US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Switzerland North","Switzerland West","Germany West Central","Australia
- Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
- East","Norway West","France South","South India","Korea South","Jio India
- Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
- Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
- Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '12653'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
- US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
- US 2","UK South","Canada Central","Central India","Japan East","Australia
- East","Korea Central","France Central","Central US","East US 2","East Asia","West
- US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
- East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
- West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
- Central","France South","South India","Korea South","Jio India Central","Jio
- India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
- US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Switzerland North","Switzerland West","Germany West Central","Australia
- Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
- East","Norway West","France South","South India","Korea South","Jio India
- Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
- Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
- Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '12653'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: '{"location": "eastus", "properties": {"publicNetworkAccessForIngestion":
- "Enabled", "publicNetworkAccessForQuery": "Enabled"}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '126'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
- response:
- body:
- string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
- headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2021-12-01-preview
- cache-control:
- - no-cache
- content-length:
- - '887'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:07 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
- response:
- body:
- string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
- headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2021-12-01-preview
- cache-control:
- - no-cache
- content-length:
- - '887'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss/sharedKeys?api-version=2020-08-01
- response:
- body:
- string: '{"primarySharedKey":"JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw==","secondarySharedKey":"5UM95FQhLx3adsCaVa40qd+2Cj976vf5XU8TPHemKxDRhdTj4kNKAgnL9ITCoSPnfIopWMlPd9yNqvRmj2rlAw=="}'
- headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
- cache-control:
- - no-cache
- content-length:
- - '223'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
- {"daprAIInstrumentationKey": null, "vnetConfiguration": {"infrastructureSubnetId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub",
- "runtimeSubnetId": null, "dockerBridgeCidr": null, "platformReservedCidr": null,
- "platformReservedDnsIP": null, "internal": true}, "appLogsConfiguration": {"destination":
- "log-analytics", "logAnalyticsConfiguration": {"customerId": "6a164e83-41be-48ef-b72e-586abe3673cf",
- "sharedKey": "JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw=="}},
- "customDomainConfiguration": null, "zoneRedundant": false}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '758'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- cache-control:
- - no-cache
- content-length:
- - '1371'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '99'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:54 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:27 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:31 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:48 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:15 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:27 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:38 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:45 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:49 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:57 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
cache-control:
- no-cache
content-length:
- - '284'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:16 GMT
+ - Tue, 21 Mar 2023 05:19:43 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
+ {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration":
+ {"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
+ "4c67ffb8-724e-4132-a173-572d71ba9d6a", "sharedKey": "+o0XVYYl+BpPUGu9yW2c9nzD9PDSrD5MdWGD+vTdj+eqfh3aya3pinU/S3TPWyT+aKgzAoNnVasWzHN2Yv/KrA=="}},
+ "customDomainConfiguration": null, "zoneRedundant": false}}'
headers:
Accept:
- '*/*'
@@ -7351,27 +645,33 @@ interactions:
- containerapp env create
Connection:
- keep-alive
+ Content-Length:
+ - '452'
+ Content-Type:
+ - application/json
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '284'
+ - '1080'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:18 GMT
+ - Tue, 21 Mar 2023 05:19:50 GMT
expires:
- '-1'
pragma:
@@ -7380,68 +680,65 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
- body: null
+ body: '{"location": "eastus"}'
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - identity create
Connection:
- keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ab1025be-7853-4455-bcb8-c79183a6f833","clientId":"9e535d8f-f112-4bf7-8c0e-1f4ebd0ab8d8"}}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
cache-control:
- no-cache
content-length:
- - '284'
+ - '466'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:21 GMT
+ - Tue, 14 Mar 2023 06:30:48 GMT
expires:
- '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -7454,14 +751,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7473,7 +770,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:26 GMT
+ - Tue, 21 Mar 2023 05:19:52 GMT
expires:
- '-1'
pragma:
@@ -7505,14 +802,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7524,7 +821,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:29 GMT
+ - Tue, 21 Mar 2023 05:19:56 GMT
expires:
- '-1'
pragma:
@@ -7556,14 +853,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7575,7 +872,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:33 GMT
+ - Tue, 21 Mar 2023 05:20:00 GMT
expires:
- '-1'
pragma:
@@ -7607,14 +904,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7626,7 +923,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:37 GMT
+ - Tue, 21 Mar 2023 05:20:03 GMT
expires:
- '-1'
pragma:
@@ -7658,14 +955,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"Succeeded","startTime":"2023-03-21T05:19:50.0440781"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7673,11 +970,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '283'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:39 GMT
+ - Tue, 21 Mar 2023 05:20:08 GMT
expires:
- '-1'
pragma:
@@ -7709,14 +1006,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n --logs-workspace-id --logs-workspace-key
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7724,11 +1021,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '284'
+ - '1080'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:43 GMT
+ - Tue, 21 Mar 2023 05:20:11 GMT
expires:
- '-1'
pragma:
@@ -7752,50 +1049,114 @@ interactions:
body: null
headers:
Accept:
- - '*/*'
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp env show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"Succeeded","startTime":"2023-03-27T06:23:15.9736951"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
cache-control:
- no-cache
content-length:
- - '283'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:46 GMT
+ - Tue, 21 Mar 2023 05:20:11 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
status:
code: 200
message: OK
@@ -7807,18 +1168,18 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env create
+ - containerapp env show
Connection:
- keep-alive
ParameterSetName:
- - -g -n --internal-only -s
+ - -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -7826,11 +1187,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1395'
+ - '1080'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:48 GMT
+ - Tue, 21 Mar 2023 05:20:14 GMT
expires:
- '-1'
pragma:
@@ -7864,106 +1225,94 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
- connection:
- - close
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:49 GMT
+ - Tue, 21 Mar 2023 05:20:15 GMT
expires:
- '-1'
pragma:
@@ -7991,12 +1340,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8004,11 +1353,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1395'
+ - '1080'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:50 GMT
+ - Tue, 21 Mar 2023 05:20:18 GMT
expires:
- '-1'
pragma:
@@ -8028,54 +1377,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: '{"location": "eastus"}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - identity create
- Connection:
- - keep-alive
- Content-Length:
- - '22'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2022-01-31-preview
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '464'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:56 GMT
- expires:
- - '-1'
- location:
- - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
- request:
body: null
headers:
@@ -8090,104 +1391,94 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:56 GMT
+ - Tue, 21 Mar 2023 05:20:19 GMT
expires:
- '-1'
pragma:
@@ -8215,12 +1506,12 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8228,11 +1519,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1395'
+ - '1080'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:30:59 GMT
+ - Tue, 21 Mar 2023 05:20:21 GMT
expires:
- '-1'
pragma:
@@ -8253,21 +1544,18 @@ interactions:
code: 200
message: OK
- request:
- body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": {"type":
- "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":
- {}}, "principalId": null, "tenantId": null}, "properties": {"environmentId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": null,
+ "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
"configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
- {"external": true, "targetPort": 80, "exposedPort": 3000, "transport": "Tcp",
- "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
- "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
- "clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
- "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
- "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
- ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
- "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
- null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
- {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
+ {"external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"revisionName":
+ null, "weight": 100, "latestRevision": true}], "customDomains": null, "allowInsecure":
+ false, "ipSecurityRestrictions": null, "fqdn": null}, "dapr": null, "registries":
+ null}, "template": {"revisionSuffix": "myrevision", "containers": [{"image":
+ "nginx", "name": "nginx", "command": ["npm", "start"], "args": null, "env":
+ [{"name": "HTTP_PORT", "value": "80", "secretRef": null}], "resources": {"cpu":
+ 0.5, "memory": "1Gi", "ephemeralStorage": null}, "probes": null, "volumeMounts":
+ null}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 3,
+ "rules": null}, "volumes": null}}}'
headers:
Accept:
- '*/*'
@@ -8278,33 +1566,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1369'
+ - '1007'
Content-Type:
- application/json
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '2370'
+ - '2059'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:06 GMT
+ - Tue, 21 Mar 2023 05:20:44 GMT
expires:
- '-1'
pragma:
@@ -8318,7 +1606,7 @@ interactions:
x-ms-async-operation-timeout:
- PT15M
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '699'
+ - '499'
x-powered-by:
- ASP.NET
status:
@@ -8338,12 +1626,12 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"InProgress","startTime":"2023-03-27T06:31:05.6744705"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","name":"3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","status":"InProgress","startTime":"2023-03-21T05:20:26.2897934"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8355,7 +1643,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:08 GMT
+ - Tue, 21 Mar 2023 05:20:46 GMT
expires:
- '-1'
pragma:
@@ -8389,12 +1677,12 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"Succeeded","startTime":"2023-03-27T06:31:05.6744705"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","name":"3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","status":"Succeeded","startTime":"2023-03-21T05:20:26.2897934"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8406,7 +1694,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:12 GMT
+ - Tue, 21 Mar 2023 05:20:49 GMT
expires:
- '-1'
pragma:
@@ -8440,13 +1728,13 @@ interactions:
ParameterSetName:
- -n -g --environment --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8454,11 +1742,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2484'
+ - '2173'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:14 GMT
+ - Tue, 21 Mar 2023 05:20:53 GMT
expires:
- '-1'
pragma:
@@ -8492,104 +1780,94 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:15 GMT
+ - Tue, 21 Mar 2023 05:20:54 GMT
expires:
- '-1'
pragma:
@@ -8617,13 +1895,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8631,11 +1909,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2484'
+ - '2173'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:17 GMT
+ - Tue, 21 Mar 2023 05:20:56 GMT
expires:
- '-1'
pragma:
@@ -8669,104 +1947,94 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:17 GMT
+ - Tue, 21 Mar 2023 05:20:57 GMT
expires:
- '-1'
pragma:
@@ -8794,104 +2062,94 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:17 GMT
+ - Tue, 21 Mar 2023 05:20:58 GMT
expires:
- '-1'
pragma:
@@ -8919,13 +2177,13 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -8933,11 +2191,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2484'
+ - '2173'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:20 GMT
+ - Tue, 21 Mar 2023 05:20:59 GMT
expires:
- '-1'
pragma:
@@ -8971,104 +2229,94 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:21 GMT
+ - Tue, 21 Mar 2023 05:21:00 GMT
expires:
- '-1'
pragma:
@@ -9096,13 +2344,13 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -9110,11 +2358,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2484'
+ - '2173'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:23 GMT
+ - Tue, 21 Mar 2023 05:21:03 GMT
expires:
- '-1'
pragma:
@@ -9150,9 +2398,9 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004/listSecrets?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003/listSecrets?api-version=2022-10-01
response:
body:
string: '{"value":[]}'
@@ -9167,7 +2415,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:25 GMT
+ - Tue, 21 Mar 2023 05:21:06 GMT
expires:
- '-1'
pragma:
@@ -9193,12 +2441,11 @@ interactions:
body: '{"tags": {"tagname": "value"}, "location": "eastus", "properties": {"environmentId":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
"configuration": {"activeRevisionsMode": "Multiple", "ingress": {"external":
- true, "targetPort": 80, "exposedPort": 9551, "transport": "Tcp", "traffic":
- [{"weight": 100, "latestRevision": true}]}}, "template": {"revisionSuffix":
- "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
- ["npm", "start"], "env": [{"name": "HTTP_PORT", "value": "80"}], "resources":
- {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas": 1, "maxReplicas":
- 3}}}}'
+ true, "targetPort": 80, "transport": "Auto", "traffic": [{"weight": 100, "latestRevision":
+ true}]}}, "template": {"revisionSuffix": "myrevision", "containers": [{"image":
+ "nginx", "name": "nginx", "command": ["npm", "start"], "env": [{"name": "HTTP_PORT",
+ "value": "80"}], "resources": {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas":
+ 1, "maxReplicas": 3}}}}'
headers:
Accept:
- '*/*'
@@ -9209,15 +2456,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '690'
+ - '670'
Content-Type:
- application/json
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
string: ''
@@ -9230,11 +2477,11 @@ interactions:
content-length:
- '0'
date:
- - Mon, 27 Mar 2023 06:31:28 GMT
+ - Tue, 21 Mar 2023 05:21:08 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -9244,7 +2491,54 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '699'
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 21 Mar 2023 05:21:09 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
x-powered-by:
- ASP.NET
status:
@@ -9264,9 +2558,9 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
response:
body:
string: ''
@@ -9279,11 +2573,11 @@ interactions:
content-length:
- '0'
date:
- - Mon, 27 Mar 2023 06:31:30 GMT
+ - Tue, 21 Mar 2023 05:21:13 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -9311,13 +2605,13 @@ interactions:
ParameterSetName:
- -n -g --yaml
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:21:06.751112"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -9325,11 +2619,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2484'
+ - '2172'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:36 GMT
+ - Tue, 21 Mar 2023 05:21:16 GMT
expires:
- '-1'
pragma:
@@ -9363,104 +2657,94 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
+ Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
+ Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
+ Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
+ West Central","Japan East","UK South","West US","Central US","North Central
+ US","South Central US","Korea Central","Brazil South","West US 3","France
+ Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9689'
+ - '9060'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:36 GMT
+ - Tue, 21 Mar 2023 05:21:17 GMT
expires:
- '-1'
pragma:
@@ -9488,13 +2772,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:21:06.751112"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -9502,11 +2786,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2484'
+ - '2172'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 27 Mar 2023 06:31:36 GMT
+ - Tue, 21 Mar 2023 05:21:19 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
index 75b30a13b93..299338c719c 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
@@ -925,6 +925,127 @@ def test_containerapp_scale_revision_copy(self, resource_group):
def test_containerapp_create_with_yaml(self, resource_group):
self.cmd('configure --defaults location={}'.format(TEST_LOCATION))
+ env = self.create_random_name(prefix='env', length=24)
+ app = self.create_random_name(prefix='yaml', length=24)
+
+ create_containerapp_env(self, env, resource_group)
+ containerapp_env = self.cmd('containerapp env show -g {} -n {}'.format(resource_group, env)).get_output_in_json()
+
+ user_identity_name = self.create_random_name(prefix='containerapp-user', length=24)
+ user_identity = self.cmd('identity create -g {} -n {}'.format(resource_group, user_identity_name)).get_output_in_json()
+ user_identity_id = user_identity['id']
+
+ # test managedEnvironmentId
+ containerapp_yaml_text = f"""
+ location: {TEST_LOCATION}
+ type: Microsoft.App/containerApps
+ tags:
+ tagname: value
+ properties:
+ managedEnvironmentId: {containerapp_env["id"]}
+ configuration:
+ activeRevisionsMode: Multiple
+ ingress:
+ external: true
+ allowInsecure: false
+ targetPort: 80
+ traffic:
+ - latestRevision: true
+ weight: 100
+ transport: Auto
+ template:
+ revisionSuffix: myrevision
+ containers:
+ - image: nginx
+ name: nginx
+ env:
+ - name: HTTP_PORT
+ value: 80
+ command:
+ - npm
+ - start
+ resources:
+ cpu: 0.5
+ memory: 1Gi
+ scale:
+ minReplicas: 1
+ maxReplicas: 3
+ identity:
+ type: UserAssigned
+ userAssignedIdentities:
+ {user_identity_id}: {{}}
+ """
+ containerapp_file_name = "containerapp.yml"
+
+ write_test_file(containerapp_file_name, containerapp_yaml_text)
+ self.cmd(f'containerapp create -n {app} -g {resource_group} --environment {env} --yaml {containerapp_file_name}')
+
+ self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[
+ JMESPathCheck("properties.provisioningState", "Succeeded"),
+ JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.environmentId", containerapp_env["id"]),
+ JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
+ JMESPathCheck("properties.template.containers[0].name", "nginx"),
+ JMESPathCheck("properties.template.scale.minReplicas", 1),
+ JMESPathCheck("properties.template.scale.maxReplicas", 3)
+ ])
+
+ # test environmentId
+ containerapp_yaml_text = f"""
+ location: {TEST_LOCATION}
+ type: Microsoft.App/containerApps
+ tags:
+ tagname: value
+ properties:
+ environmentId: {containerapp_env["id"]}
+ configuration:
+ activeRevisionsMode: Multiple
+ ingress:
+ external: true
+ allowInsecure: false
+ targetPort: 80
+ traffic:
+ - latestRevision: true
+ weight: 100
+ transport: Auto
+ template:
+ revisionSuffix: myrevision
+ containers:
+ - image: nginx
+ name: nginx
+ env:
+ - name: HTTP_PORT
+ value: 80
+ command:
+ - npm
+ - start
+ resources:
+ cpu: 0.5
+ memory: 1Gi
+ scale:
+ minReplicas: 1
+ maxReplicas: 3
+ """
+ write_test_file(containerapp_file_name, containerapp_yaml_text)
+
+ self.cmd(f'containerapp update -n {app} -g {resource_group} --yaml {containerapp_file_name}')
+
+ self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[
+ JMESPathCheck("properties.provisioningState", "Succeeded"),
+ JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.environmentId", containerapp_env["id"]),
+ JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
+ JMESPathCheck("properties.template.containers[0].name", "nginx"),
+ JMESPathCheck("properties.template.scale.minReplicas", 1),
+ JMESPathCheck("properties.template.scale.maxReplicas", 3)
+ ])
+
+ @AllowLargeResponse(8192)
+ @ResourceGroupPreparer(location="westeurope")
+ @live_only() # encounters 'CannotOverwriteExistingCassetteException' only when run from recording (passes when run live)
+ def test_containerapp_create_with_vnet__yaml(self, resource_group):
+ self.cmd('configure --defaults location={}'.format(TEST_LOCATION))
+
env = self.create_random_name(prefix='env', length=24)
vnet = self.create_random_name(prefix='name', length=24)
From 78513aa243d87c2be7ec70624e3d1b2ab2124866 Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 15:50:44 +0800
Subject: [PATCH 06/12] fix
---
.../tests/latest/test_containerapp_commands.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
index 299338c719c..40785651542 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
@@ -1043,7 +1043,7 @@ def test_containerapp_create_with_yaml(self, resource_group):
@AllowLargeResponse(8192)
@ResourceGroupPreparer(location="westeurope")
@live_only() # encounters 'CannotOverwriteExistingCassetteException' only when run from recording (passes when run live)
- def test_containerapp_create_with_vnet__yaml(self, resource_group):
+ def test_containerapp_create_with_vnet_yaml(self, resource_group):
self.cmd('configure --defaults location={}'.format(TEST_LOCATION))
env = self.create_random_name(prefix='env', length=24)
From ac682df7d42c3d09d58fd056a5b726cb339706fd Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 21:59:29 +0800
Subject: [PATCH 07/12] add history
---
src/containerapp/HISTORY.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst
index f9b2689b7f8..019b0c86368 100644
--- a/src/containerapp/HISTORY.rst
+++ b/src/containerapp/HISTORY.rst
@@ -4,6 +4,7 @@ Release History
===============
Upcoming
+++++++
+* 'az containerapp create/update': --yaml support models for api-version 2022-03-01
* 'az containerapp env update': Fix bugs in update environment.
* Fix YAML create with user-assigned identity
* Fix polling logic for long running operations.
From bbcfc9a3d9b200450a1ac9761c8de0d28909c7d2 Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Mon, 27 Mar 2023 22:00:36 +0800
Subject: [PATCH 08/12] add history
---
src/containerapp/HISTORY.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst
index 019b0c86368..8cb94117b58 100644
--- a/src/containerapp/HISTORY.rst
+++ b/src/containerapp/HISTORY.rst
@@ -4,7 +4,7 @@ Release History
===============
Upcoming
+++++++
-* 'az containerapp create/update': --yaml support models for api-version 2022-03-01
+* 'az containerapp create/update': --yaml support models for api-version 2022-10-01
* 'az containerapp env update': Fix bugs in update environment.
* Fix YAML create with user-assigned identity
* Fix polling logic for long running operations.
From f7d6dac08bf93aa07be9ae14c14f9b47fa3eb393 Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Tue, 28 Mar 2023 13:08:25 +0800
Subject: [PATCH 09/12] add e2e test for cors policy
---
.../azext_containerapp/_sdk_models.py | 55 +-
...st_containerapp_create_with_vnet_yaml.yaml | 6487 +++++++++++++++++
.../test_containerapp_create_with_yaml.yaml | 1930 ++---
.../latest/test_containerapp_commands.py | 69 +-
4 files changed, 7609 insertions(+), 932 deletions(-)
create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml
diff --git a/src/containerapp/azext_containerapp/_sdk_models.py b/src/containerapp/azext_containerapp/_sdk_models.py
index 32d8ddcc74c..0eb8e4620aa 100644
--- a/src/containerapp/azext_containerapp/_sdk_models.py
+++ b/src/containerapp/azext_containerapp/_sdk_models.py
@@ -874,6 +874,7 @@ def __init__(self, **kwargs):
self.ingress = kwargs.get('ingress', None)
self.dapr = kwargs.get('dapr', None)
self.registries = kwargs.get('registries', None)
+ self.max_inactive_revisions = kwargs.get('max_inactive_revisions', None)
class Container(Model):
@@ -1528,6 +1529,10 @@ def __init__(self, **kwargs):
self.app_id = kwargs.get('app_id', None)
self.app_protocol = kwargs.get('app_protocol', None)
self.app_port = kwargs.get('app_port', None)
+ self.http_read_buffer_size = kwargs.get('http_read_buffer_size', None)
+ self.http_max_request_size = kwargs.get('http_max_request_size', None)
+ self.log_level = kwargs.get('log_level', None)
+ self.enable_api_logging = kwargs.get('enable_api_logging', None)
class DaprComponent(ProxyResource):
@@ -2115,12 +2120,15 @@ def __init__(self, **kwargs):
super(Ingress, self).__init__(**kwargs)
self.fqdn = None
self.external = kwargs.get('external', False)
+ self.exposedPort = kwargs.get('exposed_port', None)
self.target_port = kwargs.get('target_port', None)
self.transport = kwargs.get('transport', None)
self.traffic = kwargs.get('traffic', None)
self.custom_domains = kwargs.get('custom_domains', None)
- self.allow_insecure = kwargs.get('allow_insecure', None)
- self.ipSecurityRestrictions = kwargs.get('ipSecurityRestrictions', None)
+ self.allow_insecure = kwargs.get('allow_insecure', False)
+ self.ipSecurityRestrictions = kwargs.get('ip_security_restrictions', None)
+ self.clientCertificateMode = kwargs.get('client_certificate_mode', None)
+ self.corsPolicy = kwargs.get('cors_policy', None)
class LegacyMicrosoftAccount(Model):
@@ -2713,6 +2721,7 @@ def __init__(self, **kwargs):
self.server = kwargs.get('server', None)
self.username = kwargs.get('username', None)
self.password_secret_ref = kwargs.get('password_secret_ref', None)
+ self.identity = kwargs.get('identity', None)
class RegistryInfo(Model):
@@ -3435,3 +3444,45 @@ def __init__(self, **kwargs):
super(VolumeMount, self).__init__(**kwargs)
self.volume_name = kwargs.get('volume_name', None)
self.mount_path = kwargs.get('mount_path', None)
+
+
+class CorsPolicy(Model):
+ """Cross-Origin-Resource-Sharing policy.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param allowed_origins: allowed origins. Required.
+ :type allowed_origins: list[str]
+ :param allowed_methods: allowed HTTP methods.
+ :type allowed_methods: list[str]
+ :param allowed_headers: allowed HTTP headers.
+ :type allowed_headers: list[str]
+ :param expose_headers: expose HTTP headers.
+ :type expose_headers: list[str]
+ :param max_age: max time client can cache the result.
+ :type max_age: int
+ :param allow_credentials: allow credential or not.
+ :type allow_credentials: bool
+ """
+
+ _validation = {
+ 'allowed_origins': {'required': True},
+ }
+
+ _attribute_map = {
+ 'allowed_origins': {'key': 'allowedOrigins', 'type': '[str]'},
+ 'allowed_methods': {'key': 'allowedMethods', 'type': '[str]'},
+ 'allowed_headers': {'key': 'allowedHeaders', 'type': '[str]'},
+ 'expose_headers': {'key': 'exposeHeaders', 'type': '[str]'},
+ 'max_age': {'key': 'maxAge', 'type': 'int'},
+ 'allow_credentials': {'key': 'allowCredentials', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(CorsPolicy, self).__init__(**kwargs)
+ self.allowed_origins = kwargs.get('allowed_origins', None)
+ self.allowed_methods = kwargs.get('allowed_methods', None)
+ self.allowed_headers = kwargs.get('allowed_headers', None)
+ self.expose_headers = kwargs.get('expose_headers', None)
+ self.max_age = kwargs.get('max_age', None)
+ self.allow_credentials = kwargs.get('allow_credentials', None)
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml
new file mode 100644
index 00000000000..033c2fa724b
--- /dev/null
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml
@@ -0,0 +1,6487 @@
+interactions:
+- request:
+ body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes":
+ ["14.0.0.0/23"]}, "enableDdosProtection": false, "enableVmProtection": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '152'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
+ \ \"etag\": \"W/\\\"d569fa54-d05f-4f7c-a634-c1d8050ce1f5\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
+ \"662adc6c-c095-401e-b007-2d24975f01fa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
+ \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/97c0cc08-fbb0-448a-9a83-5aae8a7ac9c4?api-version=2022-01-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '614'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:47:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 2265f4a2-5afe-4eb3-abf4-204887ee9c70
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/97c0cc08-fbb0-448a-9a83-5aae8a7ac9c4?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:47:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - fff18e02-9b57-40ed-ba81-f9f0fb3b8fbc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
+ \ \"etag\": \"W/\\\"00505aca-b4de-4f66-86c8-74eabf12a2a0\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
+ \"662adc6c-c095-401e-b007-2d24975f01fa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
+ \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '615'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:47:59 GMT
+ etag:
+ - W/"00505aca-b4de-4f66-86c8-74eabf12a2a0"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 3c7ab38c-6f35-4911-ac39-1b23e9689eb1
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "sub", "properties": {"addressPrefix": "14.0.0.0/23"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '63'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
+ \ \"etag\": \"W/\\\"7e09bc54-8cf7-4981-a7bc-4a9ede0b6004\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8819b755-b917-4a1b-b0b2-83ea01fa3a07?api-version=2022-01-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '524'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 5838480d-ab23-420d-b072-ef2b7eaadedb
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8819b755-b917-4a1b-b0b2-83ea01fa3a07?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 5ccff908-9ae1-49bd-b124-10b12ef19fbf
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --address-prefixes -n -g --vnet-name
+ User-Agent:
+ - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
+ \ \"etag\": \"W/\\\"8ada26a9-e7da-4847-b5b4-993cec108a83\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '525'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:04 GMT
+ etag:
+ - W/"8ada26a9-e7da-4847-b5b4-993cec108a83"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 4f6a18e0-472e-41e1-a260-298b769e6876
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
+ US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
+ US 2","UK South","Canada Central","Central India","Japan East","Australia
+ East","Korea Central","France Central","Central US","East US 2","East Asia","West
+ US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
+ East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
+ West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
+ Central","France South","South India","Korea South","Jio India Central","Jio
+ India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
+ US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Switzerland North","Switzerland West","Germany West Central","Australia
+ Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
+ East","Norway West","France South","South India","Korea South","Jio India
+ Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
+ Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
+ Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12653'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
+ US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
+ US 2","UK South","Canada Central","Central India","Japan East","Australia
+ East","Korea Central","France Central","Central US","East US 2","East Asia","West
+ US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
+ East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
+ West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
+ Central","France South","South India","Korea South","Jio India Central","Jio
+ India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
+ Central","France Central","Korea Central","North Europe","Central US","East
+ Asia","East US 2","South Central US","North Central US","West US","UK West","South
+ Africa North","Brazil South","Switzerland North","Switzerland West","Germany
+ West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
+ US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Switzerland North","Switzerland West","Germany West Central","Australia
+ Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
+ East","Norway West","France South","South India","Korea South","Jio India
+ Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
+ Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
+ US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
+ East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
+ East","France Central","Korea Central","North Europe","Central US","East Asia","East
+ US 2","South Central US","North Central US","West US","UK West","South Africa
+ North","Brazil South","Switzerland North","Switzerland West","Germany West
+ Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
+ Southeast","Norway East","Norway West","France South","South India","Korea
+ South","Jio India Central","Jio India West","Qatar Central","Canada East","West
+ US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
+ Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12653'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "properties": {"publicNetworkAccessForIngestion":
+ "Enabled", "publicNetworkAccessForQuery": "Enabled"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '126'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-28T03:48:14.0931804Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T17:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T03:48:14.0931804Z","modifiedDate":"2023-03-28T03:48:14.0931804Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla","name":"workspace-clitestrgkf5qb27bdy6e7ngdbifla","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '887'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:15 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla?api-version=2021-12-01-preview
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla?api-version=2021-12-01-preview
+ response:
+ body:
+ string: '{"properties":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-28T03:48:14.0931804Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T17:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T03:48:14.0931804Z","modifiedDate":"2023-03-28T03:48:14.0931804Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla","name":"workspace-clitestrgkf5qb27bdy6e7ngdbifla","type":"Microsoft.OperationalInsights/workspaces"}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2021-12-01-preview
+ cache-control:
+ - no-cache
+ content-length:
+ - '888'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla/sharedKeys?api-version=2020-08-01
+ response:
+ body:
+ string: '{"primarySharedKey":"cOem1LCseLotkCw0B/2Yh0ZrXf1SUfwl4vgxAAOfgurD7TzjBY5R6okx73hV255F8yJg0eyXFNOM8PN/DDMvOA==","secondarySharedKey":"29gIBGrAurf74rg3pCPhRF1sR4qcH5nttDAvv7UDZe9+mwOUTXljMHFhmlxEKbPGQQDZn4bOc2xH8IJP9s4W9g=="}'
+ headers:
+ access-control-allow-origin:
+ - '*'
+ api-supported-versions:
+ - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '223'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
+ {"daprAIInstrumentationKey": null, "vnetConfiguration": {"infrastructureSubnetId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub",
+ "runtimeSubnetId": null, "dockerBridgeCidr": null, "platformReservedCidr": null,
+ "platformReservedDnsIP": null, "internal": true}, "appLogsConfiguration": {"destination":
+ "log-analytics", "logAnalyticsConfiguration": {"customerId": "904160a5-0238-4fdc-a79d-f83577053091",
+ "sharedKey": "cOem1LCseLotkCw0B/2Yh0ZrXf1SUfwl4vgxAAOfgurD7TzjBY5R6okx73hV255F8yJg0eyXFNOM8PN/DDMvOA=="}},
+ "customDomainConfiguration": null, "zoneRedundant": false}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '758'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '1372'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '99'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:48:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:49:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:50:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:51:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:52:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 03:52:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1396'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:37:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:37:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1396'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '464'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:06 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1396'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": {"type":
+ "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":
+ {}}, "principalId": null, "tenantId": null}, "properties": {"environmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ "configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
+ {"external": true, "targetPort": 80, "exposedPort": 3000, "transport": "Tcp",
+ "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
+ "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
+ "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
+ null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
+ {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1369'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '2355'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '699'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76","name":"942ef5be-6933-4202-a3b6-3a2eeb75fe76","status":"InProgress","startTime":"2023-03-28T04:38:16.0527241"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76","name":"942ef5be-6933-4202-a3b6-3a2eeb75fe76","status":"InProgress","startTime":"2023-03-28T04:38:16.0527241"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76","name":"942ef5be-6933-4202-a3b6-3a2eeb75fe76","status":"Succeeded","startTime":"2023-03-28T04:38:16.0527241"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2468'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2468'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2468'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2468'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004/listSecrets?api-version=2022-10-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "properties": {"environmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ "configuration": {"activeRevisionsMode": "Multiple", "ingress": {"external":
+ true, "targetPort": 80, "exposedPort": 9551, "transport": "Tcp", "traffic":
+ [{"weight": 100, "latestRevision": true}]}}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "env": [{"name": "HTTP_PORT", "value": "80"}], "resources":
+ {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas": 1, "maxReplicas":
+ 3}}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '690'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 28 Mar 2023 04:38:42 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '699'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 28 Mar 2023 04:38:44 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 28 Mar 2023 04:38:50 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:40.2574987"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2468'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:38:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:40.2574987"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2468'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1396'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": null,
+ "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ "configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
+ {"external": true, "targetPort": 80, "exposedPort": null, "transport": "http",
+ "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "clientCertificateMode": "Require", "corsPolicy": {"allowedOrigins": ["a", "b"],
+ "allowedMethods": ["c", "d"], "allowedHeaders": ["e", "f"], "exposeHeaders":
+ ["g", "h"], "maxAge": 7200, "allowCredentials": true}, "fqdn": null}, "dapr":
+ null, "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
+ "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
+ null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
+ {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1271'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000006?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000006","name":"yaml000006","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:39:06.7665788Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:39:06.7665788Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521?api-version=2022-10-01&azureAsyncOperation=true
+ cache-control:
+ - no-cache
+ content-length:
+ - '2191'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-async-operation-timeout:
+ - PT15M
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '699'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521","name":"f7fb0339-7d3d-4bef-ab79-7a8a4063c521","status":"InProgress","startTime":"2023-03-28T04:39:08.1498456"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521","name":"f7fb0339-7d3d-4bef-ab79-7a8a4063c521","status":"Succeeded","startTime":"2023-03-28T04:39:08.1498456"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000006?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000006","name":"yaml000006","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:39:06.7665788","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:39:06.7665788"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000006--myrevision","latestReadyRevisionName":"yaml000006--myrevision","latestRevisionFqdn":"yaml000006--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2304'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000006?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000006","name":"yaml000006","type":"Microsoft.App/containerApps","location":"East
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:39:06.7665788","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:39:06.7665788"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000006--myrevision","latestReadyRevisionName":"yaml000006--myrevision","latestRevisionFqdn":"yaml000006--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2304'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 04:39:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
index 1a3767bdbae..d288b297556 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
@@ -23,7 +23,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-21T05:19:03.5264611Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-21T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-21T05:19:03.5264611Z","modifiedDate":"2023-03-21T05:19:03.5264611Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-28T02:45:52.8863415Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T02:45:52.8863415Z","modifiedDate":"2023-03-28T02:45:52.8863415Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -36,7 +36,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:05 GMT
+ - Tue, 28 Mar 2023 02:45:53 GMT
expires:
- '-1'
location:
@@ -77,7 +77,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-21T05:19:03.5264611Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-21T23:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-21T05:19:03.5264611Z","modifiedDate":"2023-03-21T05:19:03.5264611Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-28T02:45:52.8863415Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T02:45:52.8863415Z","modifiedDate":"2023-03-28T02:45:52.8863415Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -90,7 +90,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:35 GMT
+ - Tue, 28 Mar 2023 02:46:23 GMT
expires:
- '-1'
pragma:
@@ -133,7 +133,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: '{"primarySharedKey":"+o0XVYYl+BpPUGu9yW2c9nzD9PDSrD5MdWGD+vTdj+eqfh3aya3pinU/S3TPWyT+aKgzAoNnVasWzHN2Yv/KrA==","secondarySharedKey":"rWsKWoEP5zdEfpbv9hZErr0e1m3uNXyW0xMdrfFnGn5Zjy56DRDGv3WMrnE5TtBLjYDEpDVX/VlBHHclcHbNFA=="}'
+ string: '{"primarySharedKey":"SdS0xIMyyVTQYHNIqt6CtjwPO2wO41w2TEEUvfaiRaEHUQPF0YIeszGN4bD5EGCSwJhbH3k/0PEd+rCpxLkYrw==","secondarySharedKey":"RQ6T/KZ2qUjenpyt7D2lqAKpqTHt88FxdX5MP5dCDPdf4fgq6lJr5YiISmoNQTqybBrlSJAH+/FfgLoZZQLGrQ=="}'
headers:
access-control-allow-origin:
- '*'
@@ -146,7 +146,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:41 GMT
+ - Tue, 28 Mar 2023 02:46:26 GMT
expires:
- '-1'
pragma:
@@ -190,88 +190,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:41 GMT
+ - Tue, 28 Mar 2023 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -305,88 +315,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:42 GMT
+ - Tue, 28 Mar 2023 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -420,88 +440,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:42 GMT
+ - Tue, 28 Mar 2023 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -535,88 +565,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:43 GMT
+ - Tue, 28 Mar 2023 02:46:28 GMT
expires:
- '-1'
pragma:
@@ -634,7 +674,7 @@ interactions:
body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
{"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration":
{"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "4c67ffb8-724e-4132-a173-572d71ba9d6a", "sharedKey": "+o0XVYYl+BpPUGu9yW2c9nzD9PDSrD5MdWGD+vTdj+eqfh3aya3pinU/S3TPWyT+aKgzAoNnVasWzHN2Yv/KrA=="}},
+ "d2abb7cf-9e25-4fe9-85ff-81d6f6913161", "sharedKey": "SdS0xIMyyVTQYHNIqt6CtjwPO2wO41w2TEEUvfaiRaEHUQPF0YIeszGN4bD5EGCSwJhbH3k/0PEd+rCpxLkYrw=="}},
"customDomainConfiguration": null, "zoneRedundant": false}}'
headers:
Accept:
@@ -657,21 +697,21 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1078'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:50 GMT
+ - Tue, 28 Mar 2023 02:46:33 GMT
expires:
- '-1'
pragma:
@@ -691,54 +731,6 @@ interactions:
status:
code: 201
message: Created
-- request:
- body: '{"location": "eastus"}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - identity create
- Connection:
- - keep-alive
- Content-Length:
- - '22'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ab1025be-7853-4455-bcb8-c79183a6f833","clientId":"9e535d8f-f112-4bf7-8c0e-1f4ebd0ab8d8"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '466'
- content-type:
- - application/json; charset=utf-8
- date:
- - Tue, 14 Mar 2023 06:30:48 GMT
- expires:
- - '-1'
- location:
- - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
- request:
body: null
headers:
@@ -755,10 +747,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"InProgress","startTime":"2023-03-28T02:46:32.9706452"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -770,7 +762,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:52 GMT
+ - Tue, 28 Mar 2023 02:46:35 GMT
expires:
- '-1'
pragma:
@@ -806,10 +798,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"InProgress","startTime":"2023-03-28T02:46:32.9706452"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -821,7 +813,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:19:56 GMT
+ - Tue, 28 Mar 2023 02:46:39 GMT
expires:
- '-1'
pragma:
@@ -857,10 +849,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"InProgress","startTime":"2023-03-28T02:46:32.9706452"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -872,7 +864,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:00 GMT
+ - Tue, 28 Mar 2023 02:46:43 GMT
expires:
- '-1'
pragma:
@@ -908,61 +900,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"InProgress","startTime":"2023-03-21T05:19:50.0440781"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Tue, 21 Mar 2023 05:20:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --logs-workspace-id --logs-workspace-key
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/d1be7716-613c-468d-b658-e5f621b98c02","name":"d1be7716-613c-468d-b658-e5f621b98c02","status":"Succeeded","startTime":"2023-03-21T05:19:50.0440781"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"Succeeded","startTime":"2023-03-28T02:46:32.9706452"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -974,7 +915,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:08 GMT
+ - Tue, 28 Mar 2023 02:46:46 GMT
expires:
- '-1'
pragma:
@@ -1013,7 +954,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1021,11 +962,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1078'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:11 GMT
+ - Tue, 28 Mar 2023 02:46:48 GMT
expires:
- '-1'
pragma:
@@ -1065,96 +1006,104 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:11 GMT
+ - Tue, 28 Mar 2023 02:46:49 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
status:
@@ -1179,7 +1128,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1187,11 +1136,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1078'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:14 GMT
+ - Tue, 28 Mar 2023 02:46:51 GMT
expires:
- '-1'
pragma:
@@ -1231,88 +1180,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:15 GMT
+ - Tue, 28 Mar 2023 02:46:51 GMT
expires:
- '-1'
pragma:
@@ -1345,7 +1304,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1353,11 +1312,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1078'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:18 GMT
+ - Tue, 28 Mar 2023 02:46:55 GMT
expires:
- '-1'
pragma:
@@ -1377,6 +1336,54 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: '{"location": "eastus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '464'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 02:47:03 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -1397,88 +1404,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:19 GMT
+ - Tue, 28 Mar 2023 02:47:04 GMT
expires:
- '-1'
pragma:
@@ -1511,7 +1528,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:19:48.0893051","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:19:48.0893051"},"properties":{"provisioningState":"Succeeded","defaultDomain":"livelyground-9e107604.eastus.azurecontainerapps.io","staticIp":"20.253.112.155","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c67ffb8-724e-4132-a173-572d71ba9d6a"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1519,11 +1536,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1080'
+ - '1078'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:21 GMT
+ - Tue, 28 Mar 2023 02:47:07 GMT
expires:
- '-1'
pragma:
@@ -1544,18 +1561,21 @@ interactions:
code: 200
message: OK
- request:
- body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": null,
- "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
+ body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": {"type":
+ "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":
+ {}}, "principalId": null, "tenantId": null}, "properties": {"environmentId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
"configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
- {"external": true, "targetPort": 80, "transport": "Auto", "traffic": [{"revisionName":
- null, "weight": 100, "latestRevision": true}], "customDomains": null, "allowInsecure":
- false, "ipSecurityRestrictions": null, "fqdn": null}, "dapr": null, "registries":
- null}, "template": {"revisionSuffix": "myrevision", "containers": [{"image":
- "nginx", "name": "nginx", "command": ["npm", "start"], "args": null, "env":
- [{"name": "HTTP_PORT", "value": "80", "secretRef": null}], "resources": {"cpu":
- 0.5, "memory": "1Gi", "ephemeralStorage": null}, "probes": null, "volumeMounts":
- null}], "initContainers": null, "scale": {"minReplicas": 1, "maxReplicas": 3,
- "rules": null}, "volumes": null}}}'
+ {"external": true, "targetPort": 80, "exposedPort": null, "transport": "Auto",
+ "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
+ "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
+ "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
+ ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
+ "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
+ null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
+ {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
headers:
Accept:
- '*/*'
@@ -1566,7 +1586,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1007'
+ - '1370'
Content-Type:
- application/json
ParameterSetName:
@@ -1578,21 +1598,21 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '2059'
+ - '2364'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:44 GMT
+ - Tue, 28 Mar 2023 02:47:17 GMT
expires:
- '-1'
pragma:
@@ -1606,7 +1626,7 @@ interactions:
x-ms-async-operation-timeout:
- PT15M
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '699'
x-powered-by:
- ASP.NET
status:
@@ -1628,10 +1648,61 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79","name":"8b9c65da-49cf-468a-b911-f0e04bda6b79","status":"InProgress","startTime":"2023-03-28T02:47:15.6743512"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 02:47:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","name":"3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","status":"InProgress","startTime":"2023-03-21T05:20:26.2897934"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79","name":"8b9c65da-49cf-468a-b911-f0e04bda6b79","status":"InProgress","startTime":"2023-03-28T02:47:15.6743512"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1643,7 +1714,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:46 GMT
+ - Tue, 28 Mar 2023 02:47:22 GMT
expires:
- '-1'
pragma:
@@ -1679,10 +1750,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","name":"3fcb7fd2-1866-4911-ab5f-b93bf85b3edb","status":"Succeeded","startTime":"2023-03-21T05:20:26.2897934"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79","name":"8b9c65da-49cf-468a-b911-f0e04bda6b79","status":"Succeeded","startTime":"2023-03-28T02:47:15.6743512"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1694,7 +1765,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:49 GMT
+ - Tue, 28 Mar 2023 02:47:25 GMT
expires:
- '-1'
pragma:
@@ -1734,7 +1805,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1742,11 +1813,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2478'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:53 GMT
+ - Tue, 28 Mar 2023 02:47:28 GMT
expires:
- '-1'
pragma:
@@ -1786,88 +1857,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:54 GMT
+ - Tue, 28 Mar 2023 02:47:28 GMT
expires:
- '-1'
pragma:
@@ -1901,7 +1982,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1909,11 +1990,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2478'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:56 GMT
+ - Tue, 28 Mar 2023 02:47:31 GMT
expires:
- '-1'
pragma:
@@ -1953,88 +2034,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:57 GMT
+ - Tue, 28 Mar 2023 02:47:32 GMT
expires:
- '-1'
pragma:
@@ -2068,88 +2159,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:58 GMT
+ - Tue, 28 Mar 2023 02:47:32 GMT
expires:
- '-1'
pragma:
@@ -2183,7 +2284,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2191,11 +2292,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2478'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:20:59 GMT
+ - Tue, 28 Mar 2023 02:47:35 GMT
expires:
- '-1'
pragma:
@@ -2235,88 +2336,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:00 GMT
+ - Tue, 28 Mar 2023 02:47:35 GMT
expires:
- '-1'
pragma:
@@ -2350,7 +2461,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:20:24.8983999"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2358,11 +2469,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2173'
+ - '2478'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:03 GMT
+ - Tue, 28 Mar 2023 02:47:37 GMT
expires:
- '-1'
pragma:
@@ -2415,7 +2526,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:06 GMT
+ - Tue, 28 Mar 2023 02:47:40 GMT
expires:
- '-1'
pragma:
@@ -2477,11 +2588,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 21 Mar 2023 05:21:08 GMT
+ - Tue, 28 Mar 2023 02:47:42 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -2491,7 +2602,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '699'
x-powered-by:
- ASP.NET
status:
@@ -2513,7 +2624,7 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
response:
body:
string: ''
@@ -2526,11 +2637,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 21 Mar 2023 05:21:09 GMT
+ - Tue, 28 Mar 2023 02:47:44 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -2560,58 +2671,11 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Tue, 21 Mar 2023 05:21:13 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/e3e11c27-b6ab-4a7a-86a9-c3327c0bffee?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:21:06.751112"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:41.6728601"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2619,11 +2683,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2172'
+ - '2478'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:16 GMT
+ - Tue, 28 Mar 2023 02:47:49 GMT
expires:
- '-1'
pragma:
@@ -2663,88 +2727,98 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["North
- Central US (Stage)","North Central US","East US","East Asia","West Europe","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","North Central US (Stage)","Canada Central","West Europe","North
- Europe","East US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Canada Central","West
- Europe","North Europe","East US","East US 2","East Asia","Australia East","Germany
- West Central","Japan East","UK South","West US","Central US","North Central
- US","South Central US","Korea Central","Brazil South","West US 3","France
- Central","South Africa North","Norway East","Switzerland North","UAE North"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '9060'
+ - '9689'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:17 GMT
+ - Tue, 28 Mar 2023 02:47:50 GMT
expires:
- '-1'
pragma:
@@ -2778,7 +2852,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-21T05:20:24.8983999","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-21T05:21:06.751112"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.121.237.201"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyground-9e107604.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyground-9e107604.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:41.6728601"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2786,11 +2860,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2172'
+ - '2478'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 21 Mar 2023 05:21:19 GMT
+ - Tue, 28 Mar 2023 02:47:52 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
index 40785651542..8afeb8d6a37 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
@@ -1065,7 +1065,7 @@ def test_containerapp_create_with_vnet_yaml(self, resource_group):
user_identity = self.cmd('identity create -g {} -n {}'.format(resource_group, user_identity_name)).get_output_in_json()
user_identity_id = user_identity['id']
- # test managedEnvironmentId
+ # test create containerapp transport: Tcp, with exposedPort
containerapp_yaml_text = f"""
location: {TEST_LOCATION}
type: Microsoft.App/containerApps
@@ -1122,7 +1122,7 @@ def test_containerapp_create_with_vnet_yaml(self, resource_group):
JMESPathCheck("properties.template.scale.maxReplicas", 3)
])
- # test environmentId
+ # test update containerapp transport: Tcp, with exposedPort
containerapp_yaml_text = f"""
location: {TEST_LOCATION}
type: Microsoft.App/containerApps
@@ -1173,3 +1173,68 @@ def test_containerapp_create_with_vnet_yaml(self, resource_group):
JMESPathCheck("properties.template.scale.minReplicas", 1),
JMESPathCheck("properties.template.scale.maxReplicas", 3)
])
+
+ # test create containerapp transport: http, with CORS policy
+ containerapp_yaml_text = f"""
+ location: {TEST_LOCATION}
+ type: Microsoft.App/containerApps
+ tags:
+ tagname: value
+ properties:
+ environmentId: {containerapp_env["id"]}
+ configuration:
+ activeRevisionsMode: Multiple
+ ingress:
+ external: true
+ allowInsecure: false
+ clientCertificateMode: Require
+ corsPolicy:
+ allowedOrigins: [a, b]
+ allowedMethods: [c, d]
+ allowedHeaders: [e, f]
+ exposeHeaders: [g, h]
+ maxAge: 7200
+ allowCredentials: true
+ targetPort: 80
+ traffic:
+ - latestRevision: true
+ weight: 100
+ transport: http
+ template:
+ revisionSuffix: myrevision
+ containers:
+ - image: nginx
+ name: nginx
+ env:
+ - name: HTTP_PORT
+ value: 80
+ command:
+ - npm
+ - start
+ resources:
+ cpu: 0.5
+ memory: 1Gi
+ scale:
+ minReplicas: 1
+ maxReplicas: 3
+ """
+ write_test_file(containerapp_file_name, containerapp_yaml_text)
+ app2 = self.create_random_name(prefix='yaml', length=24)
+ self.cmd(f'containerapp create -n {app2} -g {resource_group} --environment {env} --yaml {containerapp_file_name}')
+
+ self.cmd(f'containerapp show -g {resource_group} -n {app2}', checks=[
+ JMESPathCheck("properties.provisioningState", "Succeeded"),
+ JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.configuration.ingress.clientCertificateMode", "Require"),
+ JMESPathCheck("properties.configuration.ingress.corsPolicy.allowCredentials", True),
+ JMESPathCheck("properties.configuration.ingress.corsPolicy.maxAge", 7200),
+ JMESPathCheck("properties.configuration.ingress.corsPolicy.allowedHeaders[0]", "e"),
+ JMESPathCheck("properties.configuration.ingress.corsPolicy.allowedMethods[0]", "c"),
+ JMESPathCheck("properties.configuration.ingress.corsPolicy.allowedOrigins[0]", "a"),
+ JMESPathCheck("properties.configuration.ingress.corsPolicy.exposeHeaders[0]", "g"),
+ JMESPathCheck("properties.environmentId", containerapp_env["id"]),
+ JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
+ JMESPathCheck("properties.template.containers[0].name", "nginx"),
+ JMESPathCheck("properties.template.scale.minReplicas", 1),
+ JMESPathCheck("properties.template.scale.maxReplicas", 3)
+ ])
From 7cb0e4dde75a4229f928705e8ab7de745e95f1de Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Tue, 28 Mar 2023 13:19:08 +0800
Subject: [PATCH 10/12] remove
---
...st_containerapp_create_with_vent_yaml.yaml | 9529 -----------------
1 file changed, 9529 deletions(-)
delete mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml
deleted file mode 100644
index e6819475872..00000000000
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vent_yaml.yaml
+++ /dev/null
@@ -1,9529 +0,0 @@
-interactions:
-- request:
- body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes":
- ["14.0.0.0/23"]}, "enableDdosProtection": false, "enableVmProtection": false}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet create
- Connection:
- - keep-alive
- Content-Length:
- - '152'
- Content-Type:
- - application/json
- ParameterSetName:
- - --address-prefixes -g -n
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
- \ \"etag\": \"W/\\\"3f8d2641-edd1-41e0-a8c1-ebaf5f234c38\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
- [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
- \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
- \ }\r\n}"
- headers:
- azure-asyncnotification:
- - Enabled
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
- cache-control:
- - no-cache
- content-length:
- - '614'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - dd2ea7d7-221a-4e4a-ac3b-a7a1bc1e75e9
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -g -n
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"status\": \"InProgress\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '30'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - 7f0fc304-08a6-4a7f-98d8-5a6799a165fb
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -g -n
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3261f873-689d-4977-afdc-97ac9171c469?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '29'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - c9ef9e5e-48b6-4079-bf56-8ccf61f51f24
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -g -n
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
- \ \"etag\": \"W/\\\"e98f03a9-80c0-47c5-b88f-31369d9ab961\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"dbaa1848-eb01-441a-8efc-8bbb74bd7a22\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
- [\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
- \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
- \ }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '615'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:53 GMT
- etag:
- - W/"e98f03a9-80c0-47c5-b88f-31369d9ab961"
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - c9d78fa7-c15d-4556-9f57-83468516e7b5
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "sub", "properties": {"addressPrefix": "14.0.0.0/23"}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet subnet create
- Connection:
- - keep-alive
- Content-Length:
- - '63'
- Content-Type:
- - application/json
- ParameterSetName:
- - --address-prefixes -n -g --vnet-name
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
- \ \"etag\": \"W/\\\"ecd1dbb4-03db-43d5-afcd-84e802325583\\\"\",\r\n \"properties\":
- {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
- \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
- \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
- \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
- headers:
- azure-asyncnotification:
- - Enabled
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
- cache-control:
- - no-cache
- content-length:
- - '524'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - 31c915f1-c5d3-441c-951a-3fb12dd2d934
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet subnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -n -g --vnet-name
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c0cbdda-3126-477d-993c-f80f62e0f37c?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '29'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - 612a6de0-d4b5-480f-b4d5-637c54bfa62f
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - network vnet subnet create
- Connection:
- - keep-alive
- ParameterSetName:
- - --address-prefixes -n -g --vnet-name
- User-Agent:
- - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.26.3 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub?api-version=2022-01-01
- response:
- body:
- string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
- \ \"etag\": \"W/\\\"ede0f198-5ddb-461f-9ff2-88ba246f1446\\\"\",\r\n \"properties\":
- {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
- \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
- \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
- \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '525'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:56 GMT
- etag:
- - W/"ede0f198-5ddb-461f-9ff2-88ba246f1446"
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-arm-service-request-id:
- - e9661b48-3953-44cb-9545-f5bf992bfc65
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- connection:
- - close
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:57 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:22:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
- US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
- US 2","UK South","Canada Central","Central India","Japan East","Australia
- East","Korea Central","France Central","Central US","East US 2","East Asia","West
- US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
- East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
- West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
- Central","France South","South India","Korea South","Jio India Central","Jio
- India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
- US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Switzerland North","Switzerland West","Germany West Central","Australia
- Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
- East","Norway West","France South","South India","Korea South","Jio India
- Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
- Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
- Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '12653'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.OperationalInsights","namespace":"Microsoft.OperationalInsights","authorizations":[{"applicationId":"d2a0a418-0aac-4541-82b2-b3142c89da77","roleDefinitionId":"86695298-2eb9-48a7-9ec3-2fdb38b6878b"},{"applicationId":"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5","roleDefinitionId":"5d5a2e56-9835-44aa-93db-d2f19e155438"}],"resourceTypes":[{"resourceType":"workspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2021-06-01","2021-03-01-privatepreview","2020-10-01","2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"querypacks","locations":["West Central
- US","East US","South Central US","North Europe","West Europe","Southeast Asia","West
- US 2","UK South","Canada Central","Central India","Japan East","Australia
- East","Korea Central","France Central","Central US","East US 2","East Asia","West
- US","South Africa North","North Central US","Brazil South","Switzerland North","Norway
- East","Australia Southeast","Australia Central 2","Germany West Central","Switzerland
- West","UAE Central","UK West","Brazil Southeast","Japan West","UAE North","Australia
- Central","France South","South India","Korea South","Jio India Central","Jio
- India West","Qatar Central","Canada East","West US 3","Sweden Central"],"apiVersions":["2019-09-01-preview","2019-09-01"],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/operationStatuses","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/scopedPrivateLinkProxies","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-03-01-preview","capabilities":"None"},{"resourceType":"workspaces/query","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/metadata","locations":[],"apiVersions":["2017-10-01"],"capabilities":"None"},{"resourceType":"workspaces/dataSources","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/linkedStorageAccounts","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"workspaces/tables","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2022-10-01","2021-12-01-preview","2020-08-01","2020-03-01-preview","2017-04-26-preview"],"capabilities":"None"},{"resourceType":"workspaces/storageInsightConfigs","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia East","Australia
- Central","France Central","Korea Central","North Europe","Central US","East
- Asia","East US 2","South Central US","North Central US","West US","UK West","South
- Africa North","Brazil South","Switzerland North","Switzerland West","Germany
- West Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2017-04-26-preview","2017-03-15-preview","2017-03-03-preview","2017-01-01-preview","2015-11-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"storageInsightConfigs","locations":[],"apiVersions":["2020-08-01","2020-03-01-preview","2014-10-10"],"capabilities":"SupportsExtension"},{"resourceType":"workspaces/linkedServices","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview","2015-11-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"linkTargets","locations":["East
- US"],"apiVersions":["2020-03-01-preview","2015-03-20"],"capabilities":"None"},{"resourceType":"deletedWorkspaces","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2022-10-01","2021-12-01-preview","2020-10-01","2020-08-01","2020-03-01-preview","2015-11-01-preview","2014-11-10"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"clusters","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Switzerland North","Switzerland West","Germany West Central","Australia
- Central 2","UAE Central","Brazil South","UAE North","Japan West","Brazil Southeast","Norway
- East","Norway West","France South","South India","Korea South","Jio India
- Central","Jio India West","Qatar Central","Canada East","West US 3","Sweden
- Central"],"apiVersions":["2021-06-01","2020-10-01","2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2021-06-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"workspaces/dataExports","locations":["East
- US","West Europe","Southeast Asia","Australia Southeast","West Central US","Japan
- East","UK South","Central India","Canada Central","West US 2","Australia Central","Australia
- East","France Central","Korea Central","North Europe","Central US","East Asia","East
- US 2","South Central US","North Central US","West US","UK West","South Africa
- North","Brazil South","Switzerland North","Switzerland West","Germany West
- Central","Australia Central 2","UAE Central","UAE North","Japan West","Brazil
- Southeast","Norway East","Norway West","France South","South India","Korea
- South","Jio India Central","Jio India West","Qatar Central","Canada East","West
- US 3","Sweden Central"],"apiVersions":["2020-08-01","2020-03-01-preview","2019-08-01-preview"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/notifyNetworkSecurityPerimeterUpdatesAvailable","locations":["North
- Central US","East US 2 EUAP"],"apiVersions":["2021-10-01"],"defaultApiVersion":"2021-10-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '12653'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: '{"location": "eastus", "properties": {"publicNetworkAccessForIngestion":
- "Enabled", "publicNetworkAccessForQuery": "Enabled"}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '126'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
- response:
- body:
- string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
- headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2021-12-01-preview
- cache-control:
- - no-cache
- content-length:
- - '887'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:07 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss?api-version=2021-12-01-preview
- response:
- body:
- string: '{"properties":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-27T06:23:05.5767247Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-27T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-27T06:23:05.5767247Z","modifiedDate":"2023-03-27T06:23:05.5767247Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","name":"workspace-clitestrgrrqg7vfjkbgg4eqoc6nss","type":"Microsoft.OperationalInsights/workspaces"}'
- headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2021-12-01-preview
- cache-control:
- - no-cache
- content-length:
- - '887'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgrrqg7vfjkbgg4eqoc6nss/sharedKeys?api-version=2020-08-01
- response:
- body:
- string: '{"primarySharedKey":"JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw==","secondarySharedKey":"5UM95FQhLx3adsCaVa40qd+2Cj976vf5XU8TPHemKxDRhdTj4kNKAgnL9ITCoSPnfIopWMlPd9yNqvRmj2rlAw=="}'
- headers:
- access-control-allow-origin:
- - '*'
- api-supported-versions:
- - 2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01
- cache-control:
- - no-cache
- content-length:
- - '223'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
- {"daprAIInstrumentationKey": null, "vnetConfiguration": {"infrastructureSubnetId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub",
- "runtimeSubnetId": null, "dockerBridgeCidr": null, "platformReservedCidr": null,
- "platformReservedDnsIP": null, "internal": true}, "appLogsConfiguration": {"destination":
- "log-analytics", "logAnalyticsConfiguration": {"customerId": "6a164e83-41be-48ef-b72e-586abe3673cf",
- "sharedKey": "JeDMWI2/DT+UtCZdeC5IGbZ76XnFSTG+sbXJILI8Xjz9PzQKxNBb/mDFqoIzoPkem8Ro/nWZIUkGJvOgPltmUw=="}},
- "customDomainConfiguration": null, "zoneRedundant": false}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- Content-Length:
- - '758'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- cache-control:
- - no-cache
- content-length:
- - '1371'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '99'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:23:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:54 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:24:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:25:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:27 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:31 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:26:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:27:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:09 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:48 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:28:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:15 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:27 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:38 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:45 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:49 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:29:57 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:01 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:26 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"InProgress","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '284'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:43 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/4cb869cb-0ae0-4f4e-8a11-28e60f23f606","name":"4cb869cb-0ae0-4f4e-8a11-28e60f23f606","status":"Succeeded","startTime":"2023-03-27T06:23:15.9736951"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '283'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --internal-only -s
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '1395'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:48 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- connection:
- - close
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:49 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp env show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '1395'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"location": "eastus"}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - identity create
- Connection:
- - keep-alive
- Content-Length:
- - '22'
- Content-Type:
- - application/json
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2022-01-31-preview
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '464'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:56 GMT
- expires:
- - '-1'
- location:
- - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --environment --yaml
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:56 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --environment --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:23:13.358187","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:23:13.358187"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"braveglacier-ebed994d.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"6a164e83-41be-48ef-b72e-586abe3673cf"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '1395'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:30:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"tags": {"tagname": "value"}, "location": "eastus", "identity": {"type":
- "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":
- {}}, "principalId": null, "tenantId": null}, "properties": {"environmentId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
- "configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
- {"external": true, "targetPort": 80, "exposedPort": 3000, "transport": "Tcp",
- "traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
- "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
- "clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
- "registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
- "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
- ["npm", "start"], "args": null, "env": [{"name": "HTTP_PORT", "value": "80",
- "secretRef": null}], "resources": {"cpu": 0.5, "memory": "1Gi", "ephemeralStorage":
- null}, "probes": null, "volumeMounts": null}], "initContainers": null, "scale":
- {"minReplicas": 1, "maxReplicas": 3, "rules": null}, "volumes": null}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- Content-Length:
- - '1369'
- Content-Type:
- - application/json
- ParameterSetName:
- - -n -g --environment --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
- cache-control:
- - no-cache
- content-length:
- - '2370'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-async-operation-timeout:
- - PT15M
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '699'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --environment --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"InProgress","startTime":"2023-03-27T06:31:05.6744705"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '278'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --environment --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047?api-version=2022-10-01&azureAsyncOperation=true
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/15631400-2351-493d-a04f-7cfc29402047","name":"15631400-2351-493d-a04f-7cfc29402047","status":"Succeeded","startTime":"2023-03-27T06:31:05.6744705"}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '277'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --environment --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '2484'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:15 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '2484'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:17 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '2484'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:21 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:02.8837126"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '2484'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004/listSecrets?api-version=2022-10-01
- response:
- body:
- string: '{"value":[]}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '12'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: '{"tags": {"tagname": "value"}, "location": "eastus", "properties": {"environmentId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002",
- "configuration": {"activeRevisionsMode": "Multiple", "ingress": {"external":
- true, "targetPort": 80, "exposedPort": 9551, "transport": "Tcp", "traffic":
- [{"weight": 100, "latestRevision": true}]}}, "template": {"revisionSuffix":
- "myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
- ["npm", "start"], "env": [{"name": "HTTP_PORT", "value": "80"}], "resources":
- {"cpu": 0.5, "memory": "1Gi"}}], "scale": {"minReplicas": 1, "maxReplicas":
- 3}}}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- Content-Length:
- - '690'
- Content-Type:
- - application/json
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Mon, 27 Mar 2023 06:31:28 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-resource-requests:
- - '699'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Mon, 27 Mar 2023 06:31:30 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/071fec74-5b90-4681-82ea-cb1f0f04e14e?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '2484'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.45.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.22621-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '9689'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - python/3.8.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.45.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000004?api-version=2022-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-27T06:31:02.8837126","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-27T06:31:26.6834127"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.226.219"],"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.braveglacier-ebed994d.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.braveglacier-ebed994d.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"fc679774-720d-418e-8430-1f4c59863bec","clientId":"98de6274-18c6-4069-902c-2a73a14c1a67"}}}}'
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '2484'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 27 Mar 2023 06:31:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding,Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-version: 1
From 11efe8f304d08bd914247a0c17ae0ed6db17a09a Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Tue, 28 Mar 2023 14:43:46 +0800
Subject: [PATCH 11/12] add test
---
.../azext_containerapp/_sdk_models.py | 2 +-
...st_containerapp_create_with_vnet_yaml.yaml | 10973 +++++++++++++++-
.../test_containerapp_create_with_yaml.yaml | 283 +-
.../latest/test_containerapp_commands.py | 17 +
4 files changed, 10646 insertions(+), 629 deletions(-)
diff --git a/src/containerapp/azext_containerapp/_sdk_models.py b/src/containerapp/azext_containerapp/_sdk_models.py
index 0eb8e4620aa..146a4d00ca2 100644
--- a/src/containerapp/azext_containerapp/_sdk_models.py
+++ b/src/containerapp/azext_containerapp/_sdk_models.py
@@ -2125,7 +2125,7 @@ def __init__(self, **kwargs):
self.transport = kwargs.get('transport', None)
self.traffic = kwargs.get('traffic', None)
self.custom_domains = kwargs.get('custom_domains', None)
- self.allow_insecure = kwargs.get('allow_insecure', False)
+ self.allow_insecure = kwargs.get('allow_insecure', None)
self.ipSecurityRestrictions = kwargs.get('ip_security_restrictions', None)
self.clientCertificateMode = kwargs.get('client_certificate_mode', None)
self.corsPolicy = kwargs.get('cors_policy', None)
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml
index 033c2fa724b..be6d9b32d55 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_vnet_yaml.yaml
@@ -24,10 +24,10 @@ interactions:
response:
body:
string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
- \ \"etag\": \"W/\\\"d569fa54-d05f-4f7c-a634-c1d8050ce1f5\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"3125d3c5-7718-41cb-a81f-ae34ae5a636a\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\":
- \"662adc6c-c095-401e-b007-2d24975f01fa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ \"08c4fe23-ce03-4edd-addc-fa7974f6d43b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
[\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
\ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
\ }\r\n}"
@@ -35,7 +35,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/97c0cc08-fbb0-448a-9a83-5aae8a7ac9c4?api-version=2022-01-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff3ebc6a-adf7-45ed-bf3f-191f5c919ae9?api-version=2022-01-01
cache-control:
- no-cache
content-length:
@@ -43,7 +43,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:47:55 GMT
+ - Tue, 28 Mar 2023 06:27:21 GMT
expires:
- '-1'
pragma:
@@ -56,7 +56,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2265f4a2-5afe-4eb3-abf4-204887ee9c70
+ - 59a5976e-627a-451a-a184-a5c850d96a37
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -78,7 +78,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/97c0cc08-fbb0-448a-9a83-5aae8a7ac9c4?api-version=2022-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff3ebc6a-adf7-45ed-bf3f-191f5c919ae9?api-version=2022-01-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -90,7 +90,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:47:58 GMT
+ - Tue, 28 Mar 2023 06:27:24 GMT
expires:
- '-1'
pragma:
@@ -107,7 +107,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fff18e02-9b57-40ed-ba81-f9f0fb3b8fbc
+ - 26ccff5d-0661-4899-a3cf-96a19ec7f305
status:
code: 200
message: OK
@@ -131,10 +131,10 @@ interactions:
response:
body:
string: "{\r\n \"name\": \"name000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003\",\r\n
- \ \"etag\": \"W/\\\"00505aca-b4de-4f66-86c8-74eabf12a2a0\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"0363c82c-2ed6-441b-84a3-5468ce101194\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\":
- \"662adc6c-c095-401e-b007-2d24975f01fa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
+ \"08c4fe23-ce03-4edd-addc-fa7974f6d43b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\":
[\r\n \"14.0.0.0/23\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n
\ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n
\ }\r\n}"
@@ -146,9 +146,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:47:59 GMT
+ - Tue, 28 Mar 2023 06:27:25 GMT
etag:
- - W/"00505aca-b4de-4f66-86c8-74eabf12a2a0"
+ - W/"0363c82c-2ed6-441b-84a3-5468ce101194"
expires:
- '-1'
pragma:
@@ -165,7 +165,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3c7ab38c-6f35-4911-ac39-1b23e9689eb1
+ - 30c0c955-f359-4d89-830b-3f7330382faf
status:
code: 200
message: OK
@@ -193,7 +193,7 @@ interactions:
response:
body:
string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
- \ \"etag\": \"W/\\\"7e09bc54-8cf7-4981-a7bc-4a9ede0b6004\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"e3238d77-4102-4c65-80f1-9ca7e8c14bf6\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
\ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
\ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
@@ -202,7 +202,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8819b755-b917-4a1b-b0b2-83ea01fa3a07?api-version=2022-01-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0323d795-06f2-42af-8070-a30acba9cac7?api-version=2022-01-01
cache-control:
- no-cache
content-length:
@@ -210,7 +210,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:01 GMT
+ - Tue, 28 Mar 2023 06:27:27 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5838480d-ab23-420d-b072-ef2b7eaadedb
+ - 434ccc97-3fef-488e-a99b-a8a210b50ed6
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -245,7 +245,7 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8819b755-b917-4a1b-b0b2-83ea01fa3a07?api-version=2022-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0323d795-06f2-42af-8070-a30acba9cac7?api-version=2022-01-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -257,7 +257,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:04 GMT
+ - Tue, 28 Mar 2023 06:27:31 GMT
expires:
- '-1'
pragma:
@@ -274,7 +274,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5ccff908-9ae1-49bd-b124-10b12ef19fbf
+ - 576eed9b-4f89-4ab2-b60a-fe747553bac7
status:
code: 200
message: OK
@@ -298,7 +298,7 @@ interactions:
response:
body:
string: "{\r\n \"name\": \"sub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub\",\r\n
- \ \"etag\": \"W/\\\"8ada26a9-e7da-4847-b5b4-993cec108a83\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"1e550ba6-c279-44f0-8c32-7fc4baddcf02\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"14.0.0.0/23\",\r\n
\ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n
\ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
@@ -311,9 +311,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:04 GMT
+ - Tue, 28 Mar 2023 06:27:31 GMT
etag:
- - W/"8ada26a9-e7da-4847-b5b4-993cec108a83"
+ - W/"1e550ba6-c279-44f0-8c32-7fc4baddcf02"
expires:
- '-1'
pragma:
@@ -330,7 +330,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4f6a18e0-472e-41e1-a260-298b769e6876
+ - 80cc2bae-e851-451c-83e1-4fc132163693
status:
code: 200
message: OK
@@ -445,7 +445,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:06 GMT
+ - Tue, 28 Mar 2023 06:27:33 GMT
expires:
- '-1'
pragma:
@@ -570,7 +570,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:06 GMT
+ - Tue, 28 Mar 2023 06:27:33 GMT
expires:
- '-1'
pragma:
@@ -695,7 +695,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:07 GMT
+ - Tue, 28 Mar 2023 06:27:33 GMT
expires:
- '-1'
pragma:
@@ -820,7 +820,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:07 GMT
+ - Tue, 28 Mar 2023 06:27:33 GMT
expires:
- '-1'
pragma:
@@ -976,7 +976,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:08 GMT
+ - Tue, 28 Mar 2023 06:27:34 GMT
expires:
- '-1'
pragma:
@@ -1132,7 +1132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:09 GMT
+ - Tue, 28 Mar 2023 06:27:34 GMT
expires:
- '-1'
pragma:
@@ -1167,10 +1167,10 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla?api-version=2021-12-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrguf5beceag7bwug46pm6im?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-28T03:48:14.0931804Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T17:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T03:48:14.0931804Z","modifiedDate":"2023-03-28T03:48:14.0931804Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla","name":"workspace-clitestrgkf5qb27bdy6e7ngdbifla","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"29baf26d-97df-4872-a511-be40145f7079","provisioningState":"Creating","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-28T06:27:39.967897Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-29T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T06:27:39.967897Z","modifiedDate":"2023-03-28T06:27:39.967897Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrguf5beceag7bwug46pm6im","name":"workspace-clitestrguf5beceag7bwug46pm6im","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -1179,15 +1179,15 @@ interactions:
cache-control:
- no-cache
content-length:
- - '887'
+ - '884'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:15 GMT
+ - Tue, 28 Mar 2023 06:27:41 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla?api-version=2021-12-01-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrguf5beceag7bwug46pm6im?api-version=2021-12-01-preview
pragma:
- no-cache
request-context:
@@ -1221,10 +1221,10 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla?api-version=2021-12-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrguf5beceag7bwug46pm6im?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-28T03:48:14.0931804Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T17:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T03:48:14.0931804Z","modifiedDate":"2023-03-28T03:48:14.0931804Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla","name":"workspace-clitestrgkf5qb27bdy6e7ngdbifla","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"29baf26d-97df-4872-a511-be40145f7079","provisioningState":"Succeeded","sku":{"name":"pergb2018","lastSkuUpdate":"2023-03-28T06:27:39.967897Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-29T02:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T06:27:39.967897Z","modifiedDate":"2023-03-28T06:27:39.967897Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrguf5beceag7bwug46pm6im","name":"workspace-clitestrguf5beceag7bwug46pm6im","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -1233,11 +1233,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '888'
+ - '885'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:44 GMT
+ - Tue, 28 Mar 2023 06:28:11 GMT
expires:
- '-1'
pragma:
@@ -1277,10 +1277,10 @@ interactions:
User-Agent:
- AZURECLI/2.46.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.10.10 (Windows-10-10.0.22621-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrgkf5qb27bdy6e7ngdbifla/sharedKeys?api-version=2020-08-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/workspace-clitestrguf5beceag7bwug46pm6im/sharedKeys?api-version=2020-08-01
response:
body:
- string: '{"primarySharedKey":"cOem1LCseLotkCw0B/2Yh0ZrXf1SUfwl4vgxAAOfgurD7TzjBY5R6okx73hV255F8yJg0eyXFNOM8PN/DDMvOA==","secondarySharedKey":"29gIBGrAurf74rg3pCPhRF1sR4qcH5nttDAvv7UDZe9+mwOUTXljMHFhmlxEKbPGQQDZn4bOc2xH8IJP9s4W9g=="}'
+ string: '{"primarySharedKey":"dKHWsTXkBDKrdZCrIWHPIt2IIQEypYcNYO8r80EqzJ1ykbfHlB8NujfDS+T3oL9g7RL4WgbURTL+79zDMp4F3Q==","secondarySharedKey":"cx2qb5iPXIQ+lWhHhhNzQKeMowmUjz36fXuJ6leoYEqSTAoFr+vJY3xZyA9vPxhL15vZEzurOs/O6mwIlXVOEA=="}'
headers:
access-control-allow-origin:
- '*'
@@ -1293,7 +1293,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:47 GMT
+ - Tue, 28 Mar 2023 06:28:13 GMT
expires:
- '-1'
pragma:
@@ -1323,8 +1323,8 @@ interactions:
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub",
"runtimeSubnetId": null, "dockerBridgeCidr": null, "platformReservedCidr": null,
"platformReservedDnsIP": null, "internal": true}, "appLogsConfiguration": {"destination":
- "log-analytics", "logAnalyticsConfiguration": {"customerId": "904160a5-0238-4fdc-a79d-f83577053091",
- "sharedKey": "cOem1LCseLotkCw0B/2Yh0ZrXf1SUfwl4vgxAAOfgurD7TzjBY5R6okx73hV255F8yJg0eyXFNOM8PN/DDMvOA=="}},
+ "log-analytics", "logAnalyticsConfiguration": {"customerId": "29baf26d-97df-4872-a511-be40145f7079",
+ "sharedKey": "dKHWsTXkBDKrdZCrIWHPIt2IIQEypYcNYO8r80EqzJ1ykbfHlB8NujfDS+T3oL9g7RL4WgbURTL+79zDMp4F3Q=="}},
"customDomainConfiguration": null, "zoneRedundant": false}}'
headers:
Accept:
@@ -1347,21 +1347,21 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666Z"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1372'
+ - '1371'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:54 GMT
+ - Tue, 28 Mar 2023 06:28:20 GMT
expires:
- '-1'
pragma:
@@ -1397,10 +1397,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1412,7 +1412,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:56 GMT
+ - Tue, 28 Mar 2023 06:28:22 GMT
expires:
- '-1'
pragma:
@@ -1448,10 +1448,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1463,7 +1463,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:48:59 GMT
+ - Tue, 28 Mar 2023 06:28:26 GMT
expires:
- '-1'
pragma:
@@ -1499,10 +1499,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1514,7 +1514,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:04 GMT
+ - Tue, 28 Mar 2023 06:28:30 GMT
expires:
- '-1'
pragma:
@@ -1550,10 +1550,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1565,7 +1565,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:07 GMT
+ - Tue, 28 Mar 2023 06:28:33 GMT
expires:
- '-1'
pragma:
@@ -1601,10 +1601,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1616,7 +1616,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:11 GMT
+ - Tue, 28 Mar 2023 06:28:37 GMT
expires:
- '-1'
pragma:
@@ -1652,10 +1652,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1667,7 +1667,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:14 GMT
+ - Tue, 28 Mar 2023 06:28:40 GMT
expires:
- '-1'
pragma:
@@ -1703,10 +1703,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1718,7 +1718,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:18 GMT
+ - Tue, 28 Mar 2023 06:28:44 GMT
expires:
- '-1'
pragma:
@@ -1727,10 +1727,8 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- - Accept-Encoding,Accept-Encoding
+ - Accept-Encoding
x-content-type-options:
- nosniff
x-powered-by:
@@ -1754,10 +1752,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1769,7 +1767,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:22 GMT
+ - Tue, 28 Mar 2023 06:28:46 GMT
expires:
- '-1'
pragma:
@@ -1805,10 +1803,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1820,7 +1818,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:25 GMT
+ - Tue, 28 Mar 2023 06:28:50 GMT
expires:
- '-1'
pragma:
@@ -1856,10 +1854,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1871,7 +1869,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:28 GMT
+ - Tue, 28 Mar 2023 06:28:54 GMT
expires:
- '-1'
pragma:
@@ -1907,10 +1905,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1922,7 +1920,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:32 GMT
+ - Tue, 28 Mar 2023 06:28:58 GMT
expires:
- '-1'
pragma:
@@ -1958,10 +1956,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1973,7 +1971,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:35 GMT
+ - Tue, 28 Mar 2023 06:29:01 GMT
expires:
- '-1'
pragma:
@@ -2009,10 +2007,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2024,7 +2022,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:39 GMT
+ - Tue, 28 Mar 2023 06:29:04 GMT
expires:
- '-1'
pragma:
@@ -2060,10 +2058,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2075,7 +2073,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:43 GMT
+ - Tue, 28 Mar 2023 06:29:08 GMT
expires:
- '-1'
pragma:
@@ -2111,10 +2109,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2126,7 +2124,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:46 GMT
+ - Tue, 28 Mar 2023 06:29:12 GMT
expires:
- '-1'
pragma:
@@ -2162,10 +2160,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2177,7 +2175,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:50 GMT
+ - Tue, 28 Mar 2023 06:29:15 GMT
expires:
- '-1'
pragma:
@@ -2213,10 +2211,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2228,7 +2226,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:54 GMT
+ - Tue, 28 Mar 2023 06:29:18 GMT
expires:
- '-1'
pragma:
@@ -2264,10 +2262,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2279,7 +2277,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:49:58 GMT
+ - Tue, 28 Mar 2023 06:29:22 GMT
expires:
- '-1'
pragma:
@@ -2315,10 +2313,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2330,7 +2328,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:01 GMT
+ - Tue, 28 Mar 2023 06:29:26 GMT
expires:
- '-1'
pragma:
@@ -2366,10 +2364,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2381,7 +2379,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:05 GMT
+ - Tue, 28 Mar 2023 06:29:28 GMT
expires:
- '-1'
pragma:
@@ -2417,10 +2415,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2432,7 +2430,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:09 GMT
+ - Tue, 28 Mar 2023 06:29:32 GMT
expires:
- '-1'
pragma:
@@ -2468,10 +2466,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2483,7 +2481,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:12 GMT
+ - Tue, 28 Mar 2023 06:29:36 GMT
expires:
- '-1'
pragma:
@@ -2519,10 +2517,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2534,7 +2532,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:16 GMT
+ - Tue, 28 Mar 2023 06:29:38 GMT
expires:
- '-1'
pragma:
@@ -2570,10 +2568,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2585,7 +2583,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:20 GMT
+ - Tue, 28 Mar 2023 06:29:42 GMT
expires:
- '-1'
pragma:
@@ -2621,10 +2619,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2636,7 +2634,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:24 GMT
+ - Tue, 28 Mar 2023 06:29:44 GMT
expires:
- '-1'
pragma:
@@ -2672,10 +2670,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2687,7 +2685,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:27 GMT
+ - Tue, 28 Mar 2023 06:29:47 GMT
expires:
- '-1'
pragma:
@@ -2723,10 +2721,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2738,7 +2736,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:32 GMT
+ - Tue, 28 Mar 2023 06:29:52 GMT
expires:
- '-1'
pragma:
@@ -2774,10 +2772,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2789,7 +2787,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:35 GMT
+ - Tue, 28 Mar 2023 06:29:55 GMT
expires:
- '-1'
pragma:
@@ -2825,10 +2823,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2840,7 +2838,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:39 GMT
+ - Tue, 28 Mar 2023 06:30:00 GMT
expires:
- '-1'
pragma:
@@ -2876,10 +2874,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2891,7 +2889,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:42 GMT
+ - Tue, 28 Mar 2023 06:30:03 GMT
expires:
- '-1'
pragma:
@@ -2927,10 +2925,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2942,7 +2940,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:46 GMT
+ - Tue, 28 Mar 2023 06:30:06 GMT
expires:
- '-1'
pragma:
@@ -2978,10 +2976,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2993,7 +2991,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:49 GMT
+ - Tue, 28 Mar 2023 06:30:11 GMT
expires:
- '-1'
pragma:
@@ -3029,10 +3027,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3044,7 +3042,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:52 GMT
+ - Tue, 28 Mar 2023 06:30:15 GMT
expires:
- '-1'
pragma:
@@ -3080,10 +3078,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3095,7 +3093,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:56 GMT
+ - Tue, 28 Mar 2023 06:30:18 GMT
expires:
- '-1'
pragma:
@@ -3131,10 +3129,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3146,7 +3144,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:50:59 GMT
+ - Tue, 28 Mar 2023 06:30:22 GMT
expires:
- '-1'
pragma:
@@ -3182,10 +3180,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3197,7 +3195,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:03 GMT
+ - Tue, 28 Mar 2023 06:30:26 GMT
expires:
- '-1'
pragma:
@@ -3233,10 +3231,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3248,7 +3246,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:07 GMT
+ - Tue, 28 Mar 2023 06:30:30 GMT
expires:
- '-1'
pragma:
@@ -3284,10 +3282,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3299,7 +3297,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:11 GMT
+ - Tue, 28 Mar 2023 06:30:33 GMT
expires:
- '-1'
pragma:
@@ -3335,10 +3333,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3350,7 +3348,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:15 GMT
+ - Tue, 28 Mar 2023 06:30:37 GMT
expires:
- '-1'
pragma:
@@ -3386,10 +3384,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3401,7 +3399,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:19 GMT
+ - Tue, 28 Mar 2023 06:30:40 GMT
expires:
- '-1'
pragma:
@@ -3437,10 +3435,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3452,7 +3450,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:22 GMT
+ - Tue, 28 Mar 2023 06:30:44 GMT
expires:
- '-1'
pragma:
@@ -3488,10 +3486,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3503,7 +3501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:26 GMT
+ - Tue, 28 Mar 2023 06:30:47 GMT
expires:
- '-1'
pragma:
@@ -3539,10 +3537,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3554,7 +3552,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:29 GMT
+ - Tue, 28 Mar 2023 06:30:52 GMT
expires:
- '-1'
pragma:
@@ -3590,10 +3588,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3605,7 +3603,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:34 GMT
+ - Tue, 28 Mar 2023 06:30:55 GMT
expires:
- '-1'
pragma:
@@ -3641,10 +3639,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3656,7 +3654,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:37 GMT
+ - Tue, 28 Mar 2023 06:30:59 GMT
expires:
- '-1'
pragma:
@@ -3692,10 +3690,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3707,7 +3705,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:40 GMT
+ - Tue, 28 Mar 2023 06:31:03 GMT
expires:
- '-1'
pragma:
@@ -3743,10 +3741,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3758,7 +3756,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:44 GMT
+ - Tue, 28 Mar 2023 06:31:06 GMT
expires:
- '-1'
pragma:
@@ -3794,10 +3792,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3809,7 +3807,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:48 GMT
+ - Tue, 28 Mar 2023 06:31:10 GMT
expires:
- '-1'
pragma:
@@ -3845,10 +3843,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3860,7 +3858,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:52 GMT
+ - Tue, 28 Mar 2023 06:31:14 GMT
expires:
- '-1'
pragma:
@@ -3896,10 +3894,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3911,7 +3909,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:54 GMT
+ - Tue, 28 Mar 2023 06:31:18 GMT
expires:
- '-1'
pragma:
@@ -3947,10 +3945,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -3962,7 +3960,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:51:58 GMT
+ - Tue, 28 Mar 2023 06:31:22 GMT
expires:
- '-1'
pragma:
@@ -3998,10 +3996,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4013,7 +4011,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:52:02 GMT
+ - Tue, 28 Mar 2023 06:31:25 GMT
expires:
- '-1'
pragma:
@@ -4049,10 +4047,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dd6effca-b9aa-4752-9b10-0c0f29a499ba","name":"dd6effca-b9aa-4752-9b10-0c0f29a499ba","status":"InProgress","startTime":"2023-03-28T03:48:54.0171682"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4064,7 +4062,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 03:52:06 GMT
+ - Tue, 28 Mar 2023 06:31:29 GMT
expires:
- '-1'
pragma:
@@ -4100,10 +4098,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4111,11 +4109,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1396'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:37:57 GMT
+ - Tue, 28 Mar 2023 06:31:32 GMT
expires:
- '-1'
pragma:
@@ -4139,124 +4137,50 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp env create
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
cache-control:
- no-cache
content-length:
- - '9689'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:37:59 GMT
+ - Tue, 28 Mar 2023 06:31:36 GMT
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- - Accept-Encoding
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
+ x-powered-by:
+ - ASP.NET
status:
code: 200
message: OK
@@ -4268,18 +4192,18 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp env show
+ - containerapp env create
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -n --internal-only -s
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4287,11 +4211,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1396'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:01 GMT
+ - Tue, 28 Mar 2023 06:31:40 GMT
expires:
- '-1'
pragma:
@@ -4312,165 +4236,10027 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus"}'
+ body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - identity create
+ - containerapp env create
Connection:
- keep-alive
- Content-Length:
- - '22'
- Content-Type:
- - application/json
ParameterSetName:
- - -g -n
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
cache-control:
- no-cache
content-length:
- - '464'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:06 GMT
+ - Tue, 28 Mar 2023 06:31:43 GMT
expires:
- '-1'
- location:
- - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ x-powered-by:
+ - ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - containerapp create
+ - containerapp env create
Connection:
- keep-alive
ParameterSetName:
- - -n -g --environment --yaml
+ - -g -n --internal-only -s
User-Agent:
- - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
- Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
- Asia","Sweden Central","Canada Central","West Europe","North Europe","East
- US","East US 2","East Asia","Australia East","Germany West Central","Japan
- East","UK South","West US","Central US","North Central US","South Central
- US","Korea Central","Brazil South","West US 3","France Central","South Africa
- North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
- US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
- (Stage)","Canada Central","West Europe","North Europe","East US","East US
- 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
- US","Central US","North Central US","South Central US","Korea Central","Brazil
- South","West US 3","France Central","South Africa North","Norway East","Switzerland
- North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
- SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
- Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
- US 2","East Asia","Australia East","Germany West Central","Japan East","UK
- South","West US","Central US","North Central US","South Central US","Korea
- Central","Brazil South","West US 3","France Central","South Africa North","Norway
- East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
- US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
- US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
- Central US","East US 2","West Europe","Central US","East US","North Europe","South
- Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
cache-control:
- no-cache
content-length:
- - '9689'
+ - '284'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:08 GMT
+ - Tue, 28 Mar 2023 06:31:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:31:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:31:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:31:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:32:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:33:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:34:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:35:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:36:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:37:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/1254cc6e-a929-4266-9e84-0f1767b40ac5","name":"1254cc6e-a929-4266-9e84-0f1767b40ac5","status":"InProgress","startTime":"2023-03-28T06:28:20.1326304"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --internal-only -s
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:38:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:39:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:40:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:41:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Waiting","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1393'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:41:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:41:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1395'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:41:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - identity create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '464'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:41:20 GMT
+ expires:
+ - '-1'
+ location:
+ - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Windows-10-10.0.22621-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App","namespace":"Microsoft.App","authorizations":[{"applicationId":"7e3bc4fd-85a3-4192-b177-5b8bfc87f42c","roleDefinitionId":"39a74f72-b40f-4bdc-b639-562fe2260bf0"},{"applicationId":"3734c1a4-2bed-4998-a37a-ff1a9e7bf019","roleDefinitionId":"5c779a4f-5cb2-4547-8c41-478d9be8ba90"},{"applicationId":"55ebbb62-3b9c-49fd-9b87-9595226dd4ac","roleDefinitionId":"e49ca620-7992-4561-a7df-4ed67dad77b5","managedByRoleDefinitionId":"9e3af657-a8ff-583c-a75c-2fe7c4bcb635"}],"resourceTypes":[{"resourceType":"operations","locations":["North
+ Central US (Stage)","Central US EUAP","East US 2 EUAP","West US 2","Southeast
+ Asia","Sweden Central","Canada Central","West Europe","North Europe","East
+ US","East US 2","East Asia","Australia East","Germany West Central","Japan
+ East","UK South","West US","Central US","North Central US","South Central
+ US","Korea Central","Brazil South","West US 3","France Central","South Africa
+ North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"managedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"jobs","locations":["Central US EUAP","East
+ US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North Central US
+ (Stage)","Canada Central","West Europe","North Europe","East US","East US
+ 2","East Asia","Australia East","Germany West Central","Japan East","UK South","West
+ US","Central US","North Central US","South Central US","Korea Central","Brazil
+ South","West US 3","France Central","South Africa North","Norway East","Switzerland
+ North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
+ SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","West US 2","Southeast Asia","Sweden Central","North
+ Central US (Stage)","Canada Central","West Europe","North Europe","East US","East
+ US 2","East Asia","Australia East","Germany West Central","Japan East","UK
+ South","West US","Central US","North Central US","South Central US","Korea
+ Central","Brazil South","West US 3","France Central","South Africa North","Norway
+ East","Switzerland North","UAE North"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/connectedEnvironmentOperationResults","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","North Central US","East
+ US","East Asia","West Europe"],"apiVersions":["2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["Central
+ US EUAP","East US 2 EUAP","North Central US (Stage)","Australia East","North
+ Central US","East US 2","West Europe","Central US","East US","North Europe","South
+ Central US","UK South","West US 3"],"apiVersions":["2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '9689'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:41:20 GMT
expires:
- '-1'
pragma:
@@ -4503,7 +14289,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4511,11 +14297,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1396'
+ - '1395'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:09 GMT
+ - Tue, 28 Mar 2023 06:41:22 GMT
expires:
- '-1'
pragma:
@@ -4573,21 +14359,21 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:26.3077848Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '2355'
+ - '2354'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:17 GMT
+ - Tue, 28 Mar 2023 06:41:29 GMT
expires:
- '-1'
pragma:
@@ -4623,10 +14409,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76","name":"942ef5be-6933-4202-a3b6-3a2eeb75fe76","status":"InProgress","startTime":"2023-03-28T04:38:16.0527241"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d","name":"116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d","status":"InProgress","startTime":"2023-03-28T06:41:28.0263917"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4638,7 +14424,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:18 GMT
+ - Tue, 28 Mar 2023 06:41:31 GMT
expires:
- '-1'
pragma:
@@ -4674,10 +14460,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76","name":"942ef5be-6933-4202-a3b6-3a2eeb75fe76","status":"InProgress","startTime":"2023-03-28T04:38:16.0527241"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d","name":"116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d","status":"InProgress","startTime":"2023-03-28T06:41:28.0263917"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4689,7 +14475,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:22 GMT
+ - Tue, 28 Mar 2023 06:41:36 GMT
expires:
- '-1'
pragma:
@@ -4725,10 +14511,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/942ef5be-6933-4202-a3b6-3a2eeb75fe76","name":"942ef5be-6933-4202-a3b6-3a2eeb75fe76","status":"Succeeded","startTime":"2023-03-28T04:38:16.0527241"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d","name":"116e4a3e-ab8e-4a5a-af44-e18ffd7bee8d","status":"Succeeded","startTime":"2023-03-28T06:41:28.0263917"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4740,7 +14526,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:25 GMT
+ - Tue, 28 Mar 2023 06:41:39 GMT
expires:
- '-1'
pragma:
@@ -4780,7 +14566,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:26.3077848"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4788,11 +14574,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2468'
+ - '2466'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:28 GMT
+ - Tue, 28 Mar 2023 06:41:41 GMT
expires:
- '-1'
pragma:
@@ -4923,7 +14709,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:28 GMT
+ - Tue, 28 Mar 2023 06:41:41 GMT
expires:
- '-1'
pragma:
@@ -4957,7 +14743,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:26.3077848"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -4965,11 +14751,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2468'
+ - '2466'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:31 GMT
+ - Tue, 28 Mar 2023 06:41:44 GMT
expires:
- '-1'
pragma:
@@ -5100,7 +14886,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:31 GMT
+ - Tue, 28 Mar 2023 06:41:45 GMT
expires:
- '-1'
pragma:
@@ -5225,7 +15011,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:31 GMT
+ - Tue, 28 Mar 2023 06:41:45 GMT
expires:
- '-1'
pragma:
@@ -5259,7 +15045,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:26.3077848"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5267,11 +15053,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2468'
+ - '2466'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:34 GMT
+ - Tue, 28 Mar 2023 06:41:48 GMT
expires:
- '-1'
pragma:
@@ -5402,7 +15188,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:34 GMT
+ - Tue, 28 Mar 2023 06:41:48 GMT
expires:
- '-1'
pragma:
@@ -5436,7 +15222,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:13.4936415"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:26.3077848"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":3000,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5444,11 +15230,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2468'
+ - '2466'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:36 GMT
+ - Tue, 28 Mar 2023 06:41:51 GMT
expires:
- '-1'
pragma:
@@ -5501,7 +15287,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:39 GMT
+ - Tue, 28 Mar 2023 06:41:53 GMT
expires:
- '-1'
pragma:
@@ -5564,11 +15350,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 28 Mar 2023 04:38:42 GMT
+ - Tue, 28 Mar 2023 06:41:56 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/7915b498-41d0-45e6-b866-f96f8406f58a?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -5600,54 +15386,7 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
- response:
- body:
- string: ''
- headers:
- api-supported-versions:
- - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
- 2023-02-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Tue, 28 Mar 2023 04:38:44 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - containerapp update
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --yaml
- User-Agent:
- - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/7915b498-41d0-45e6-b866-f96f8406f58a?api-version=2022-10-01
response:
body:
string: ''
@@ -5660,11 +15399,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 28 Mar 2023 04:38:50 GMT
+ - Tue, 28 Mar 2023 06:41:57 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/7915b498-41d0-45e6-b866-f96f8406f58a?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -5694,11 +15433,11 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/4dffdbd2-c2b1-4080-9364-12987e2aabb6?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/7915b498-41d0-45e6-b866-f96f8406f58a?api-version=2022-10-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:40.2574987"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:54.7245343"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5706,11 +15445,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2468'
+ - '2466'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:57 GMT
+ - Tue, 28 Mar 2023 06:42:04 GMT
expires:
- '-1'
pragma:
@@ -5841,7 +15580,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:38:58 GMT
+ - Tue, 28 Mar 2023 06:42:05 GMT
expires:
- '-1'
pragma:
@@ -5875,7 +15614,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000004","name":"yaml000004","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:38:13.4936415","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:38:40.2574987"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6b848144-cd74-47af-9da9-cea2373ed9cb","clientId":"9d157737-52ad-4bcd-b11a-5f8b37b2d3a4"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:41:26.3077848","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:41:54.7245343"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000004--myrevision","latestReadyRevisionName":"yaml000004--myrevision","latestRevisionFqdn":"yaml000004--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000004.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":9551,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000004/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"6e19d8cc-1659-4f07-b7f4-9e6aed89d380","clientId":"9ee7dec3-3a80-4bc3-a669-c5b90bfa8ab9"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -5883,11 +15622,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2468'
+ - '2466'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:00 GMT
+ - Tue, 28 Mar 2023 06:42:07 GMT
expires:
- '-1'
pragma:
@@ -6018,13 +15757,15 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:00 GMT
+ - Tue, 28 Mar 2023 06:42:08 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
status:
@@ -6049,7 +15790,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T03:48:51.3174805","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T03:48:51.3174805"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"gentleplant-aae38db1.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"904160a5-0238-4fdc-a79d-f83577053091"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:17.7343666","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:17.7343666"},"properties":{"provisioningState":"Succeeded","vnetConfiguration":{"internal":true,"infrastructureSubnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/name000003/subnets/sub","dockerBridgeCidr":"10.1.0.1/16","platformReservedCidr":"10.0.0.0/16","platformReservedDnsIP":"10.0.0.2"},"defaultDomain":"blackbeach-ab1beb5b.eastus.azurecontainerapps.io","staticIp":"14.0.0.152","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"29baf26d-97df-4872-a511-be40145f7079"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6057,11 +15798,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1396'
+ - '1395'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:02 GMT
+ - Tue, 28 Mar 2023 06:42:10 GMT
expires:
- '-1'
pragma:
@@ -6087,7 +15828,8 @@ interactions:
"configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
{"external": true, "targetPort": 80, "exposedPort": null, "transport": "http",
"traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
- "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": [{"name":
+ "name", "ipAddressRange": "1.1.1.1/10", "action": "Allow", "description": null}],
"clientCertificateMode": "Require", "corsPolicy": {"allowedOrigins": ["a", "b"],
"allowedMethods": ["c", "d"], "allowedHeaders": ["e", "f"], "exposeHeaders":
["g", "h"], "maxAge": 7200, "allowCredentials": true}, "fqdn": null}, "dapr":
@@ -6107,7 +15849,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1271'
+ - '1357'
Content-Type:
- application/json
ParameterSetName:
@@ -6119,21 +15861,21 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000006","name":"yaml000006","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:39:06.7665788Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:39:06.7665788Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:42:12.7304193Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:42:12.7304193Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '2191'
+ - '2250'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:09 GMT
+ - Tue, 28 Mar 2023 06:42:15 GMT
expires:
- '-1'
pragma:
@@ -6169,10 +15911,163 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147","name":"5afb9cd2-f5ea-4f6d-aecf-04f579345147","status":"InProgress","startTime":"2023-03-28T06:42:14.0787431"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:42:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147","name":"5afb9cd2-f5ea-4f6d-aecf-04f579345147","status":"InProgress","startTime":"2023-03-28T06:42:14.0787431"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:42:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147","name":"5afb9cd2-f5ea-4f6d-aecf-04f579345147","status":"InProgress","startTime":"2023-03-28T06:42:14.0787431"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:42:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521","name":"f7fb0339-7d3d-4bef-ab79-7a8a4063c521","status":"InProgress","startTime":"2023-03-28T04:39:08.1498456"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147","name":"5afb9cd2-f5ea-4f6d-aecf-04f579345147","status":"InProgress","startTime":"2023-03-28T06:42:14.0787431"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6184,7 +16079,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:10 GMT
+ - Tue, 28 Mar 2023 06:42:29 GMT
expires:
- '-1'
pragma:
@@ -6220,10 +16115,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/f7fb0339-7d3d-4bef-ab79-7a8a4063c521","name":"f7fb0339-7d3d-4bef-ab79-7a8a4063c521","status":"Succeeded","startTime":"2023-03-28T04:39:08.1498456"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5afb9cd2-f5ea-4f6d-aecf-04f579345147","name":"5afb9cd2-f5ea-4f6d-aecf-04f579345147","status":"Succeeded","startTime":"2023-03-28T06:42:14.0787431"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6235,7 +16130,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:14 GMT
+ - Tue, 28 Mar 2023 06:42:31 GMT
expires:
- '-1'
pragma:
@@ -6275,7 +16170,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000006","name":"yaml000006","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:39:06.7665788","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:39:06.7665788"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000006--myrevision","latestReadyRevisionName":"yaml000006--myrevision","latestRevisionFqdn":"yaml000006--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:42:12.7304193","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:42:12.7304193"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000006--myrevision","latestReadyRevisionName":"yaml000006--myrevision","latestRevisionFqdn":"yaml000006--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6283,11 +16178,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2304'
+ - '2362'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:17 GMT
+ - Tue, 28 Mar 2023 06:42:33 GMT
expires:
- '-1'
pragma:
@@ -6418,7 +16313,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:18 GMT
+ - Tue, 28 Mar 2023 06:42:34 GMT
expires:
- '-1'
pragma:
@@ -6452,7 +16347,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000006","name":"yaml000006","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T04:39:06.7665788","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T04:39:06.7665788"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000006--myrevision","latestReadyRevisionName":"yaml000006--myrevision","latestRevisionFqdn":"yaml000006--myrevision.gentleplant-aae38db1.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.gentleplant-aae38db1.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:42:12.7304193","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:42:12.7304193"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":null,"latestRevisionName":"yaml000006--myrevision","latestReadyRevisionName":"yaml000006--myrevision","latestRevisionFqdn":"yaml000006--myrevision.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000006.blackbeach-ab1beb5b.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":{"allowedOrigins":["a","b"],"allowedMethods":["c","d"],"allowedHeaders":["e","f"],"exposeHeaders":["g","h"],"maxAge":7200,"allowCredentials":true},"clientCertificateMode":"Require"},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000006/eventstream"},"identity":{"type":"None"}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -6460,11 +16355,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2304'
+ - '2362'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 04:39:19 GMT
+ - Tue, 28 Mar 2023 06:42:35 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
index d288b297556..1364b98ad03 100644
--- a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
+++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_create_with_yaml.yaml
@@ -23,7 +23,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-28T02:45:52.8863415Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T02:45:52.8863415Z","modifiedDate":"2023-03-28T02:45:52.8863415Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-28T06:27:23.2771155Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-29T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T06:27:23.2771155Z","modifiedDate":"2023-03-28T06:27:23.2771155Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -36,7 +36,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:45:53 GMT
+ - Tue, 28 Mar 2023 06:27:24 GMT
expires:
- '-1'
location:
@@ -77,7 +77,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004?api-version=2021-12-01-preview
response:
body:
- string: '{"properties":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-28T02:45:52.8863415Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-28T03:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T02:45:52.8863415Z","modifiedDate":"2023-03-28T02:45:52.8863415Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
+ string: '{"properties":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-03-28T06:27:23.2771155Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-03-29T04:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-03-28T06:27:23.2771155Z","modifiedDate":"2023-03-28T06:27:23.2771155Z"},"location":"eastus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004","name":"containerapp-env000004","type":"Microsoft.OperationalInsights/workspaces"}'
headers:
access-control-allow-origin:
- '*'
@@ -90,7 +90,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:23 GMT
+ - Tue, 28 Mar 2023 06:27:55 GMT
expires:
- '-1'
pragma:
@@ -133,7 +133,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.OperationalInsights/workspaces/containerapp-env000004/sharedKeys?api-version=2020-08-01
response:
body:
- string: '{"primarySharedKey":"SdS0xIMyyVTQYHNIqt6CtjwPO2wO41w2TEEUvfaiRaEHUQPF0YIeszGN4bD5EGCSwJhbH3k/0PEd+rCpxLkYrw==","secondarySharedKey":"RQ6T/KZ2qUjenpyt7D2lqAKpqTHt88FxdX5MP5dCDPdf4fgq6lJr5YiISmoNQTqybBrlSJAH+/FfgLoZZQLGrQ=="}'
+ string: '{"primarySharedKey":"1jX3F6/26B9kWC0bewYsOJoRAO8H7ejqSADsmbUMyzEcqD7ItBm+gujqngTnVgsykJhJGOCXE+eFsJ1vPe4Grw==","secondarySharedKey":"X4Luhz6At4lno3tisMLnyAdKZbmoyNBArwpYDcrS8MOU7vpzuCkNG2yCwVfhTtHkeuM5HrBe+OGjevIKmDCaAg=="}'
headers:
access-control-allow-origin:
- '*'
@@ -146,7 +146,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:26 GMT
+ - Tue, 28 Mar 2023 06:27:57 GMT
expires:
- '-1'
pragma:
@@ -281,7 +281,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:28 GMT
+ - Tue, 28 Mar 2023 06:27:57 GMT
expires:
- '-1'
pragma:
@@ -406,7 +406,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:28 GMT
+ - Tue, 28 Mar 2023 06:27:58 GMT
expires:
- '-1'
pragma:
@@ -531,7 +531,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:28 GMT
+ - Tue, 28 Mar 2023 06:27:58 GMT
expires:
- '-1'
pragma:
@@ -656,7 +656,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:28 GMT
+ - Tue, 28 Mar 2023 06:27:58 GMT
expires:
- '-1'
pragma:
@@ -674,7 +674,7 @@ interactions:
body: '{"location": "eastus", "tags": null, "sku": {"name": "Consumption"}, "properties":
{"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration":
{"destination": "log-analytics", "logAnalyticsConfiguration": {"customerId":
- "d2abb7cf-9e25-4fe9-85ff-81d6f6913161", "sharedKey": "SdS0xIMyyVTQYHNIqt6CtjwPO2wO41w2TEEUvfaiRaEHUQPF0YIeszGN4bD5EGCSwJhbH3k/0PEd+rCpxLkYrw=="}},
+ "e5e4ed64-c65b-4488-ad44-43ba27993191", "sharedKey": "1jX3F6/26B9kWC0bewYsOJoRAO8H7ejqSADsmbUMyzEcqD7ItBm+gujqngTnVgsykJhJGOCXE+eFsJ1vPe4Grw=="}},
"customDomainConfiguration": null, "zoneRedundant": false}}'
headers:
Accept:
@@ -697,21 +697,21 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:03.3198893Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:03.3198893Z"},"properties":{"provisioningState":"Waiting","defaultDomain":"ashymeadow-5de0fa60.eastus.azurecontainerapps.io","staticIp":"20.246.244.13","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '1078'
+ - '1077'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:33 GMT
+ - Tue, 28 Mar 2023 06:28:05 GMT
expires:
- '-1'
pragma:
@@ -747,10 +747,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"InProgress","startTime":"2023-03-28T02:46:32.9706452"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686","name":"c90f7878-d600-433f-ac4d-48ebe50c1686","status":"InProgress","startTime":"2023-03-28T06:28:05.1209817"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -762,7 +762,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:35 GMT
+ - Tue, 28 Mar 2023 06:28:08 GMT
expires:
- '-1'
pragma:
@@ -798,10 +798,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"InProgress","startTime":"2023-03-28T02:46:32.9706452"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686","name":"c90f7878-d600-433f-ac4d-48ebe50c1686","status":"InProgress","startTime":"2023-03-28T06:28:05.1209817"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -813,7 +813,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:39 GMT
+ - Tue, 28 Mar 2023 06:28:11 GMT
expires:
- '-1'
pragma:
@@ -849,10 +849,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"InProgress","startTime":"2023-03-28T02:46:32.9706452"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686","name":"c90f7878-d600-433f-ac4d-48ebe50c1686","status":"InProgress","startTime":"2023-03-28T06:28:05.1209817"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -864,7 +864,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:43 GMT
+ - Tue, 28 Mar 2023 06:28:14 GMT
expires:
- '-1'
pragma:
@@ -900,10 +900,61 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/dee3306d-8350-4361-b8a6-a374e9807c19","name":"dee3306d-8350-4361-b8a6-a374e9807c19","status":"Succeeded","startTime":"2023-03-28T02:46:32.9706452"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686","name":"c90f7878-d600-433f-ac4d-48ebe50c1686","status":"InProgress","startTime":"2023-03-28T06:28:05.1209817"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '284'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:28:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp env create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --logs-workspace-id --logs-workspace-key
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/c90f7878-d600-433f-ac4d-48ebe50c1686","name":"c90f7878-d600-433f-ac4d-48ebe50c1686","status":"Succeeded","startTime":"2023-03-28T06:28:05.1209817"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -915,7 +966,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:46 GMT
+ - Tue, 28 Mar 2023 06:28:22 GMT
expires:
- '-1'
pragma:
@@ -954,7 +1005,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:03.3198893","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:03.3198893"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashymeadow-5de0fa60.eastus.azurecontainerapps.io","staticIp":"20.246.244.13","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -962,11 +1013,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1078'
+ - '1077'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:48 GMT
+ - Tue, 28 Mar 2023 06:28:24 GMT
expires:
- '-1'
pragma:
@@ -1097,13 +1148,15 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:49 GMT
+ - Tue, 28 Mar 2023 06:28:25 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
status:
@@ -1128,7 +1181,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:03.3198893","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:03.3198893"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashymeadow-5de0fa60.eastus.azurecontainerapps.io","staticIp":"20.246.244.13","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1136,11 +1189,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1078'
+ - '1077'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:51 GMT
+ - Tue, 28 Mar 2023 06:28:27 GMT
expires:
- '-1'
pragma:
@@ -1271,7 +1324,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:51 GMT
+ - Tue, 28 Mar 2023 06:28:27 GMT
expires:
- '-1'
pragma:
@@ -1304,7 +1357,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:03.3198893","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:03.3198893"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashymeadow-5de0fa60.eastus.azurecontainerapps.io","staticIp":"20.246.244.13","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1312,11 +1365,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1078'
+ - '1077'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:46:55 GMT
+ - Tue, 28 Mar 2023 06:28:29 GMT
expires:
- '-1'
pragma:
@@ -1359,7 +1412,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005?api-version=2023-01-31
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}'
headers:
cache-control:
- no-cache
@@ -1368,7 +1421,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:03 GMT
+ - Tue, 28 Mar 2023 06:28:34 GMT
expires:
- '-1'
location:
@@ -1495,7 +1548,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:04 GMT
+ - Tue, 28 Mar 2023 06:28:35 GMT
expires:
- '-1'
pragma:
@@ -1528,7 +1581,7 @@ interactions:
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2022-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:46:32.2730733","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:46:32.2730733"},"properties":{"provisioningState":"Succeeded","defaultDomain":"yellowflower-29f8a1f4.eastus.azurecontainerapps.io","staticIp":"20.232.5.235","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"d2abb7cf-9e25-4fe9-85ff-81d6f6913161"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"eastus","systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:03.3198893","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:03.3198893"},"properties":{"provisioningState":"Succeeded","defaultDomain":"ashymeadow-5de0fa60.eastus.azurecontainerapps.io","staticIp":"20.246.244.13","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"e5e4ed64-c65b-4488-ad44-43ba27993191"}},"zoneRedundant":false,"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00"}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1536,11 +1589,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1078'
+ - '1077'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:07 GMT
+ - Tue, 28 Mar 2023 06:28:37 GMT
expires:
- '-1'
pragma:
@@ -1568,7 +1621,8 @@ interactions:
"configuration": {"secrets": null, "activeRevisionsMode": "Multiple", "ingress":
{"external": true, "targetPort": 80, "exposedPort": null, "transport": "Auto",
"traffic": [{"revisionName": null, "weight": 100, "latestRevision": true}],
- "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": null,
+ "customDomains": null, "allowInsecure": false, "ipSecurityRestrictions": [{"name":
+ "name", "ipAddressRange": "1.1.1.1/10", "action": "Allow", "description": null}],
"clientCertificateMode": null, "corsPolicy": null, "fqdn": null}, "dapr": null,
"registries": null, "maxInactiveRevisions": null}, "template": {"revisionSuffix":
"myrevision", "containers": [{"image": "nginx", "name": "nginx", "command":
@@ -1586,7 +1640,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1370'
+ - '1456'
Content-Type:
- application/json
ParameterSetName:
@@ -1598,21 +1652,21 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:41.6917603Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
2023-02-01
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6?api-version=2022-10-01&azureAsyncOperation=true
cache-control:
- no-cache
content-length:
- - '2364'
+ - '2426'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:17 GMT
+ - Tue, 28 Mar 2023 06:28:46 GMT
expires:
- '-1'
pragma:
@@ -1648,10 +1702,61 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6?api-version=2022-10-01&azureAsyncOperation=true
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","name":"e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","status":"InProgress","startTime":"2023-03-28T06:28:44.2457061"}'
+ headers:
+ api-supported-versions:
+ - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
+ 2023-02-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '278'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 28 Mar 2023 06:28:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - containerapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --environment --yaml
+ User-Agent:
+ - python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79","name":"8b9c65da-49cf-468a-b911-f0e04bda6b79","status":"InProgress","startTime":"2023-03-28T02:47:15.6743512"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","name":"e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","status":"InProgress","startTime":"2023-03-28T06:28:44.2457061"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1663,7 +1768,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:19 GMT
+ - Tue, 28 Mar 2023 06:28:51 GMT
expires:
- '-1'
pragma:
@@ -1699,10 +1804,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79","name":"8b9c65da-49cf-468a-b911-f0e04bda6b79","status":"InProgress","startTime":"2023-03-28T02:47:15.6743512"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","name":"e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","status":"InProgress","startTime":"2023-03-28T06:28:44.2457061"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1714,7 +1819,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:22 GMT
+ - Tue, 28 Mar 2023 06:28:55 GMT
expires:
- '-1'
pragma:
@@ -1750,10 +1855,10 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79?api-version=2022-10-01&azureAsyncOperation=true
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6?api-version=2022-10-01&azureAsyncOperation=true
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/8b9c65da-49cf-468a-b911-f0e04bda6b79","name":"8b9c65da-49cf-468a-b911-f0e04bda6b79","status":"Succeeded","startTime":"2023-03-28T02:47:15.6743512"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","name":"e94d5169-b5b0-4e8a-855c-76bcb8bd61c6","status":"Succeeded","startTime":"2023-03-28T06:28:44.2457061"}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1765,7 +1870,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:25 GMT
+ - Tue, 28 Mar 2023 06:28:58 GMT
expires:
- '-1'
pragma:
@@ -1805,7 +1910,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:41.6917603"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1813,11 +1918,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2478'
+ - '2538'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:28 GMT
+ - Tue, 28 Mar 2023 06:29:00 GMT
expires:
- '-1'
pragma:
@@ -1948,7 +2053,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:28 GMT
+ - Tue, 28 Mar 2023 06:29:00 GMT
expires:
- '-1'
pragma:
@@ -1982,7 +2087,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:41.6917603"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -1990,11 +2095,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2478'
+ - '2538'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:31 GMT
+ - Tue, 28 Mar 2023 06:29:03 GMT
expires:
- '-1'
pragma:
@@ -2125,7 +2230,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:32 GMT
+ - Tue, 28 Mar 2023 06:29:04 GMT
expires:
- '-1'
pragma:
@@ -2250,7 +2355,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:32 GMT
+ - Tue, 28 Mar 2023 06:29:04 GMT
expires:
- '-1'
pragma:
@@ -2284,7 +2389,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:41.6917603"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2292,11 +2397,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2478'
+ - '2538'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:35 GMT
+ - Tue, 28 Mar 2023 06:29:05 GMT
expires:
- '-1'
pragma:
@@ -2427,7 +2532,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:35 GMT
+ - Tue, 28 Mar 2023 06:29:06 GMT
expires:
- '-1'
pragma:
@@ -2461,7 +2566,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:13.2027969"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:28:41.6917603"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2469,11 +2574,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2478'
+ - '2538'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:37 GMT
+ - Tue, 28 Mar 2023 06:29:07 GMT
expires:
- '-1'
pragma:
@@ -2526,7 +2631,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:40 GMT
+ - Tue, 28 Mar 2023 06:29:09 GMT
expires:
- '-1'
pragma:
@@ -2588,11 +2693,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 28 Mar 2023 02:47:42 GMT
+ - Tue, 28 Mar 2023 06:29:13 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/05407580-3d66-4c33-b3c5-de57eb9bb0f9?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -2624,7 +2729,7 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/05407580-3d66-4c33-b3c5-de57eb9bb0f9?api-version=2022-10-01
response:
body:
string: ''
@@ -2637,11 +2742,11 @@ interactions:
content-length:
- '0'
date:
- - Tue, 28 Mar 2023 02:47:44 GMT
+ - Tue, 28 Mar 2023 06:29:13 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/05407580-3d66-4c33-b3c5-de57eb9bb0f9?api-version=2022-10-01
pragma:
- no-cache
server:
@@ -2671,11 +2776,11 @@ interactions:
User-Agent:
- python/3.10.10 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/0ba4e046-ae5a-4775-a604-cbe963f8c4b0?api-version=2022-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/05407580-3d66-4c33-b3c5-de57eb9bb0f9?api-version=2022-10-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:41.6728601"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:29:11.0013263"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2683,11 +2788,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2478'
+ - '2538'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:49 GMT
+ - Tue, 28 Mar 2023 06:29:19 GMT
expires:
- '-1'
pragma:
@@ -2818,7 +2923,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:50 GMT
+ - Tue, 28 Mar 2023 06:29:19 GMT
expires:
- '-1'
pragma:
@@ -2852,7 +2957,7 @@ interactions:
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/yaml000003","name":"yaml000003","type":"Microsoft.App/containerApps","location":"East
- US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T02:47:13.2027969","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T02:47:41.6728601"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.232.4.6"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.yellowflower-29f8a1f4.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"30dccb00-15a8-49e5-9ddb-e15957202524","clientId":"a05c9662-ec2a-451c-a2a1-12eb70621a16"}}}}'
+ US","tags":{"tagname":"value"},"systemData":{"createdBy":"xinyupang@microsoft.com","createdByType":"User","createdAt":"2023-03-28T06:28:41.6917603","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-03-28T06:29:11.0013263"},"properties":{"provisioningState":"Succeeded","managedEnvironmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","environmentId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","workloadProfileType":null,"outboundIpAddresses":["20.246.244.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.ashymeadow-5de0fa60.eastus.azurecontainerapps.io","external":true,"targetPort":80,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":[{"name":"name","ipAddressRange":"1.1.1.1/10","action":"Allow"}],"corsPolicy":null,"clientCertificateMode":null},"registries":null,"dapr":null,"maxInactiveRevisions":null},"template":{"revisionSuffix":"myrevision","containers":[{"image":"nginx","name":"nginx","command":["npm","start"],"env":[{"name":"HTTP_PORT","value":"80"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":3,"rules":null},"volumes":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/yaml000003/eventstream"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005":{"principalId":"e7f6bf30-f3bd-4f45-b2e5-9731280ca23b","clientId":"22bbd858-7713-4f33-b9f0-b46629421472"}}}}'
headers:
api-supported-versions:
- 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview,
@@ -2860,11 +2965,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2478'
+ - '2538'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 28 Mar 2023 02:47:52 GMT
+ - Tue, 28 Mar 2023 06:29:21 GMT
expires:
- '-1'
pragma:
diff --git a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
index 8afeb8d6a37..21e791cc676 100644
--- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
+++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py
@@ -953,6 +953,10 @@ def test_containerapp_create_with_yaml(self, resource_group):
- latestRevision: true
weight: 100
transport: Auto
+ ipSecurityRestrictions:
+ - name: name
+ ipAddressRange: "1.1.1.1/10"
+ action: "Allow"
template:
revisionSuffix: myrevision
containers:
@@ -983,6 +987,9 @@ def test_containerapp_create_with_yaml(self, resource_group):
self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[
JMESPathCheck("properties.provisioningState", "Succeeded"),
JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].name", "name"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].ipAddressRange", "1.1.1.1/10"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].action", "Allow"),
JMESPathCheck("properties.environmentId", containerapp_env["id"]),
JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
JMESPathCheck("properties.template.containers[0].name", "nginx"),
@@ -1033,6 +1040,9 @@ def test_containerapp_create_with_yaml(self, resource_group):
self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[
JMESPathCheck("properties.provisioningState", "Succeeded"),
JMESPathCheck("properties.configuration.ingress.external", True),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].name", "name"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].ipAddressRange", "1.1.1.1/10"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].action", "Allow"),
JMESPathCheck("properties.environmentId", containerapp_env["id"]),
JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
JMESPathCheck("properties.template.containers[0].name", "nginx"),
@@ -1196,6 +1206,10 @@ def test_containerapp_create_with_vnet_yaml(self, resource_group):
maxAge: 7200
allowCredentials: true
targetPort: 80
+ ipSecurityRestrictions:
+ - name: name
+ ipAddressRange: "1.1.1.1/10"
+ action: "Allow"
traffic:
- latestRevision: true
weight: 100
@@ -1232,6 +1246,9 @@ def test_containerapp_create_with_vnet_yaml(self, resource_group):
JMESPathCheck("properties.configuration.ingress.corsPolicy.allowedMethods[0]", "c"),
JMESPathCheck("properties.configuration.ingress.corsPolicy.allowedOrigins[0]", "a"),
JMESPathCheck("properties.configuration.ingress.corsPolicy.exposeHeaders[0]", "g"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].name", "name"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].ipAddressRange", "1.1.1.1/10"),
+ JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].action", "Allow"),
JMESPathCheck("properties.environmentId", containerapp_env["id"]),
JMESPathCheck("properties.template.revisionSuffix", "myrevision"),
JMESPathCheck("properties.template.containers[0].name", "nginx"),
From 7651a4f25921657a31ab8595a8d14e24a10ed69f Mon Sep 17 00:00:00 2001
From: xinyu pang <1042945277@qq.com>
Date: Tue, 28 Mar 2023 15:27:19 +0800
Subject: [PATCH 12/12] fix history
---
src/containerapp/HISTORY.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst
index 8cb94117b58..306793e38cd 100644
--- a/src/containerapp/HISTORY.rst
+++ b/src/containerapp/HISTORY.rst
@@ -4,8 +4,8 @@ Release History
===============
Upcoming
+++++++
-* 'az containerapp create/update': --yaml support models for api-version 2022-10-01
-* 'az containerapp env update': Fix bugs in update environment.
+* 'az containerapp create/update': --yaml support properties for api-version 2022-10-01 (e.g. exposedPort,clientCertificateMode,corsPolicy)
+* 'az containerapp env update': fix bugs in update environment.
* Fix YAML create with user-assigned identity
* Fix polling logic for long running operations.