From 5c05bd23af44e0a06c15d03c758d8129d398d38c Mon Sep 17 00:00:00 2001 From: njucz Date: Tue, 27 Jun 2023 11:14:44 +0800 Subject: [PATCH] Add terminationGracePeriodSeconds support For container app (#6439) --- src/containerapp/HISTORY.rst | 1 + .../azext_containerapp/_params.py | 2 + .../azext_containerapp/_sdk_models.py | 7 + src/containerapp/azext_containerapp/custom.py | 10 + .../test_containerapp_create_with_yaml.yaml | 3447 +++++++++-------- ...rapp_termination_grace_period_seconds.yaml | 2368 +++++++++++ .../latest/test_containerapp_commands.py | 22 +- 7 files changed, 4156 insertions(+), 1701 deletions(-) create mode 100644 src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_termination_grace_period_seconds.yaml diff --git a/src/containerapp/HISTORY.rst b/src/containerapp/HISTORY.rst index ad688317c31..1e36688573d 100644 --- a/src/containerapp/HISTORY.rst +++ b/src/containerapp/HISTORY.rst @@ -5,6 +5,7 @@ Release History Upcoming ++++++ +* 'az containerapp create/update': --termination-grace-period support custom termination grace period 0.3.34 ++++++ diff --git a/src/containerapp/azext_containerapp/_params.py b/src/containerapp/azext_containerapp/_params.py index 05f5b7d8068..d9ab5e06e5d 100644 --- a/src/containerapp/azext_containerapp/_params.py +++ b/src/containerapp/azext_containerapp/_params.py @@ -120,6 +120,7 @@ def load_arguments(self, _): c.argument('traffic_weights', nargs='*', options_list=['--traffic-weight'], help="A list of revision weight(s) for the container app. Space-separated values in 'revision_name=weight' format. For latest revision, use 'latest=weight'") c.argument('workload_profile_name', options_list=['--workload-profile-name', '-w'], help="Name of the workload profile to run the app on.", is_preview=True) c.argument('secret_volume_mount', help="Path to mount all secrets e.g. mnt/secrets", is_preview=True) + c.argument('termination_grace_period', type=int, options_list=['--termination-grace-period', '--tgp'], help="Duration in seconds a replica is given to gracefully shut down before it is forcefully terminated. (Default: 30)", is_preview=True) with self.argument_context('containerapp create', arg_group='Identity') as c: c.argument('user_assigned', nargs='+', help="Space-separated user identities to be assigned.") @@ -141,6 +142,7 @@ def load_arguments(self, _): c.argument('image', options_list=['--image', '-i'], help="Container image, e.g. publisher/image-name:tag.") c.argument('workload_profile_name', options_list=['--workload-profile-name', '-w'], help='The friendly name for the workload profile', is_preview=True) c.argument('secret_volume_mount', help="Path to mount all secrets e.g. mnt/secrets", is_preview=True) + c.argument('termination_grace_period', type=int, options_list=['--termination-grace-period', '--tgp'], help="Duration in seconds a replica is given to gracefully shut down before it is forcefully terminated. (Default: 30)", is_preview=True) # Springboard with self.argument_context('containerapp update', arg_group='Service Binding') as c: diff --git a/src/containerapp/azext_containerapp/_sdk_models.py b/src/containerapp/azext_containerapp/_sdk_models.py index 5d4942749a8..2b8ddde0469 100644 --- a/src/containerapp/azext_containerapp/_sdk_models.py +++ b/src/containerapp/azext_containerapp/_sdk_models.py @@ -7808,6 +7808,8 @@ class Template(_serialization.Model): :ivar revision_suffix: User friendly suffix that is appended to the revision name. :vartype revision_suffix: str + :ivar termination_grace_period_seconds: Gracefully shut down periods in seconds for the revision + :vartype termination_grace_period_seconds: int :ivar init_containers: List of specialized containers that run before app containers. :vartype init_containers: list[~azure.mgmt.appcontainers.models.InitContainer] :ivar containers: List of container definitions for the Container App. @@ -7822,6 +7824,7 @@ class Template(_serialization.Model): _attribute_map = { "revision_suffix": {"key": "revisionSuffix", "type": "str"}, + "termination_grace_period_seconds": {"key": "terminationGracePeriodSeconds", "type": "int"}, "init_containers": {"key": "initContainers", "type": "[InitContainer]"}, "containers": {"key": "containers", "type": "[Container]"}, "scale": {"key": "scale", "type": "Scale"}, @@ -7833,6 +7836,7 @@ def __init__( self, *, revision_suffix: Optional[str] = None, + termination_grace_period_seconds: Optional[int] = None, init_containers: Optional[List["_models.InitContainer"]] = None, containers: Optional[List["_models.Container"]] = None, scale: Optional["_models.Scale"] = None, @@ -7843,6 +7847,8 @@ def __init__( """ :keyword revision_suffix: User friendly suffix that is appended to the revision name. :paramtype revision_suffix: str + :keyword termination_grace_period_seconds: Gracefully shut down periods in seconds for the revision + :paramtype termination_grace_period_seconds: int :keyword init_containers: List of specialized containers that run before app containers. :paramtype init_containers: list[~azure.mgmt.appcontainers.models.InitContainer] :keyword containers: List of container definitions for the Container App. @@ -7856,6 +7862,7 @@ def __init__( """ super().__init__(**kwargs) self.revision_suffix = revision_suffix + self.termination_grace_period_seconds = termination_grace_period_seconds self.init_containers = init_containers self.containers = containers self.scale = scale diff --git a/src/containerapp/azext_containerapp/custom.py b/src/containerapp/azext_containerapp/custom.py index 6d5a5fb4b7d..52044d80795 100644 --- a/src/containerapp/azext_containerapp/custom.py +++ b/src/containerapp/azext_containerapp/custom.py @@ -447,6 +447,7 @@ def create_containerapp(cmd, user_assigned=None, registry_identity=None, workload_profile_name=None, + termination_grace_period=None, secret_volume_mount=None): register_provider_if_needed(cmd, CONTAINER_APPS_RP) validate_container_app_name(name, AppType.ContainerApp.name) @@ -668,6 +669,9 @@ def create_containerapp(cmd, if revision_suffix is not None and not is_registry_msi_system(registry_identity): template_def["revisionSuffix"] = revision_suffix + if termination_grace_period is not None: + template_def["terminationGracePeriodSeconds"] = termination_grace_period + containerapp_def = ContainerAppModel containerapp_def["location"] = location containerapp_def["identity"] = identity_def @@ -763,6 +767,7 @@ def update_containerapp_logic(cmd, ingress=None, target_port=None, workload_profile_name=None, + termination_grace_period=None, registry_server=None, registry_user=None, registry_pass=None, @@ -881,6 +886,9 @@ def update_containerapp_logic(cmd, new_containerapp["properties"]["template"] = {} if "template" not in new_containerapp["properties"] else new_containerapp["properties"]["template"] new_containerapp["properties"]["template"]["revisionSuffix"] = revision_suffix + if termination_grace_period is not None: + safe_set(new_containerapp, "properties", "template", "terminationGracePeriodSeconds", value=termination_grace_period) + if workload_profile_name: new_containerapp["properties"]["workloadProfileName"] = workload_profile_name @@ -1220,6 +1228,7 @@ def update_containerapp(cmd, args=None, tags=None, workload_profile_name=None, + termination_grace_period=None, no_wait=False, secret_volume_mount=None): _validate_subscription_registered(cmd, CONTAINER_APPS_RP) @@ -1250,6 +1259,7 @@ def update_containerapp(cmd, args=args, tags=tags, workload_profile_name=workload_profile_name, + termination_grace_period=termination_grace_period, no_wait=no_wait, secret_volume_mount=secret_volume_mount) 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 91648b1c83b..c9a382ea06e 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 @@ -18,12 +18,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.7 (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 response: body: - string: '{"properties":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-05-11T08:38:47.7940708Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-05-12T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-05-11T08:38:47.7940708Z","modifiedDate":"2023-05-11T08:38:47.7940708Z"},"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":"33b19981-033d-403e-8135-2ddbfa650655","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-06-26T07:31:48.0356563Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-06-26T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-26T07:31:48.0356563Z","modifiedDate":"2023-06-26T07:31:48.0356563Z"},"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: - - Thu, 11 May 2023 08:38:49 GMT + - Mon, 26 Jun 2023 07:31:48 GMT expires: - '-1' location: @@ -45,8 +45,6 @@ interactions: - 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: @@ -72,12 +70,12 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.7 (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 response: body: - string: '{"properties":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-05-11T08:38:47.7940708Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-05-12T00:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-05-11T08:38:47.7940708Z","modifiedDate":"2023-05-11T08:38:47.7940708Z"},"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":"33b19981-033d-403e-8135-2ddbfa650655","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-06-26T07:31:48.0356563Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-06-26T09:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-26T07:31:48.0356563Z","modifiedDate":"2023-06-26T07:31:48.0356563Z"},"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,15 +88,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:20 GMT + - Mon, 26 Jun 2023 07:31:48 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: @@ -128,12 +124,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.7 (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: '{"primarySharedKey":"d8cRPvCQV4fmbjuNY54ZgbD3Cs5bKzP8ME0CqRGXa6UJFJGWztgmEvYBSQBpkVzIn4mwUqIUPpWamtJBUsMiMw==","secondarySharedKey":"8P59kDtVLjQUVfXWCBa6AolninicTdQsXt9Ycn61WpxJXsi/MbgixoxBPKFXZlhz38zB7o0fu1EtmUkElvrVNQ=="}' + string: '{"primarySharedKey":"boMUmGFmLOzgQVmw0dRyLU6HH/Bc3rCVvMhFAtyEJy5KV8rGJO+Bg4cpZerjUALa4ZpobXl4rVGkMggWU4mheg==","secondarySharedKey":"iHZn6mbySwlVTz2kdkW3PETLZZP6/FhzWfLbzyMNeYfvQSVDKGcOvKmrDOb+7y2ZfwamMS7xeZHqjPR5S0uH5A=="}' headers: access-control-allow-origin: - '*' @@ -146,15 +142,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:23 GMT + - Mon, 26 Jun 2023 07:31:52 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: @@ -184,104 +178,116 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:24 GMT + - Mon, 26 Jun 2023 07:31:53 GMT expires: - '-1' pragma: @@ -309,104 +315,116 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:25 GMT + - Mon, 26 Jun 2023 07:31:54 GMT expires: - '-1' pragma: @@ -434,104 +452,116 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:25 GMT + - Mon, 26 Jun 2023 07:31:54 GMT expires: - '-1' pragma: @@ -559,104 +589,116 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:25 GMT + - Mon, 26 Jun 2023 07:31:54 GMT expires: - '-1' pragma: @@ -673,8 +715,8 @@ interactions: - request: body: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", - "logAnalyticsConfiguration": {"customerId": "2088e352-a4b9-43b3-b6fe-d1465d7012d8", - "sharedKey": "d8cRPvCQV4fmbjuNY54ZgbD3Cs5bKzP8ME0CqRGXa6UJFJGWztgmEvYBSQBpkVzIn4mwUqIUPpWamtJBUsMiMw=="}}, + "logAnalyticsConfiguration": {"customerId": "33b19981-033d-403e-8135-2ddbfa650655", + "sharedKey": "boMUmGFmLOzgQVmw0dRyLU6HH/Bc3rCVvMhFAtyEJy5KV8rGJO+Bg4cpZerjUALa4ZpobXl4rVGkMggWU4mheg=="}}, "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": false}}' headers: @@ -693,26 +735,27 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview 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-05-11T08:39:29.5894865Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:39:29.5894865Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyhill-fd5020a5.eastus.azurecontainerapps.io","staticIp":"20.85.147.243","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.4"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDateUtc":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:31:59.8494317Z","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:31:59.8494317Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happyrock-84879d9c.eastus.azurecontainerapps.io","staticIp":"52.146.54.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"33b19981-033d-403e-8135-2ddbfa650655","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '1483' + - '1524' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:31 GMT + - Mon, 26 Jun 2023 07:32:04 GMT expires: - '-1' pragma: @@ -746,16 +789,16 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04","name":"96aadaa1-18c2-4190-b562-03c748d2bb04","status":"InProgress","startTime":"2023-05-11T08:39:31.7605616"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae","name":"73470884-c0ee-436a-a145-aadfb703ffae","status":"InProgress","startTime":"2023-06-26T07:32:03.6352973"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -763,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:34 GMT + - Mon, 26 Jun 2023 07:32:05 GMT expires: - '-1' pragma: @@ -797,16 +840,16 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04","name":"96aadaa1-18c2-4190-b562-03c748d2bb04","status":"InProgress","startTime":"2023-05-11T08:39:31.7605616"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae","name":"73470884-c0ee-436a-a145-aadfb703ffae","status":"InProgress","startTime":"2023-06-26T07:32:03.6352973"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -814,7 +857,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:37 GMT + - Mon, 26 Jun 2023 07:32:10 GMT expires: - '-1' pragma: @@ -848,16 +891,16 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04","name":"96aadaa1-18c2-4190-b562-03c748d2bb04","status":"InProgress","startTime":"2023-05-11T08:39:31.7605616"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae","name":"73470884-c0ee-436a-a145-aadfb703ffae","status":"InProgress","startTime":"2023-06-26T07:32:03.6352973"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -865,7 +908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:42 GMT + - Mon, 26 Jun 2023 07:32:13 GMT expires: - '-1' pragma: @@ -899,16 +942,16 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04","name":"96aadaa1-18c2-4190-b562-03c748d2bb04","status":"InProgress","startTime":"2023-05-11T08:39:31.7605616"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae","name":"73470884-c0ee-436a-a145-aadfb703ffae","status":"InProgress","startTime":"2023-06-26T07:32:03.6352973"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -916,7 +959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:45 GMT + - Mon, 26 Jun 2023 07:32:17 GMT expires: - '-1' pragma: @@ -950,24 +993,24 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04","name":"96aadaa1-18c2-4190-b562-03c748d2bb04","status":"InProgress","startTime":"2023-05-11T08:39:31.7605616"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/73470884-c0ee-436a-a145-aadfb703ffae","name":"73470884-c0ee-436a-a145-aadfb703ffae","status":"Succeeded","startTime":"2023-06-26T07:32:03.6352973"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '284' + - '283' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:49 GMT + - Mon, 26 Jun 2023 07:32:21 GMT expires: - '-1' pragma: @@ -1001,24 +1044,25 @@ interactions: ParameterSetName: - -g -n --logs-workspace-id --logs-workspace-key User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/96aadaa1-18c2-4190-b562-03c748d2bb04","name":"96aadaa1-18c2-4190-b562-03c748d2bb04","status":"Succeeded","startTime":"2023-05-11T08:39:31.7605616"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:31:59.8494317","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:31:59.8494317"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happyrock-84879d9c.eastus.azurecontainerapps.io","staticIp":"52.146.54.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"33b19981-033d-403e-8135-2ddbfa650655","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '283' + - '1524' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:52 GMT + - Mon, 26 Jun 2023 07:32:24 GMT expires: - '-1' pragma: @@ -1038,6 +1082,143 @@ interactions: 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.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 07:32: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: @@ -1046,30 +1227,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - containerapp env create + - containerapp env show Connection: - keep-alive ParameterSetName: - - -g -n --logs-workspace-id --logs-workspace-key + - -g -n User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview 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-05-11T08:39:29.5894865","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:39:29.5894865"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyhill-fd5020a5.eastus.azurecontainerapps.io","staticIp":"20.85.147.243","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.4"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDateUtc":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:31:59.8494317","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:31:59.8494317"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happyrock-84879d9c.eastus.azurecontainerapps.io","staticIp":"52.146.54.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"33b19981-033d-403e-8135-2ddbfa650655","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '1483' + - '1524' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:55 GMT + - Mon, 26 Jun 2023 07:32:28 GMT expires: - '-1' pragma: @@ -1103,104 +1285,116 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:56 GMT + - Mon, 26 Jun 2023 07:32:29 GMT expires: - '-1' pragma: @@ -1228,24 +1422,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview 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-05-11T08:39:29.5894865","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:39:29.5894865"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyhill-fd5020a5.eastus.azurecontainerapps.io","staticIp":"20.85.147.243","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.4"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDateUtc":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:31:59.8494317","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:31:59.8494317"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happyrock-84879d9c.eastus.azurecontainerapps.io","staticIp":"52.146.54.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"33b19981-033d-403e-8135-2ddbfa650655","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '1483' + - '1524' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:39:59 GMT + - Mon, 26 Jun 2023 07:32:32 GMT expires: - '-1' pragma: @@ -1266,190 +1461,14 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastus"}' 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.11 (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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' - headers: - cache-control: - - no-cache - content-length: - - '10638' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 11 May 2023 08:40: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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp env show - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.10.11 (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=2023-04-01-preview - 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-05-11T08:39:29.5894865","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:39:29.5894865"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyhill-fd5020a5.eastus.azurecontainerapps.io","staticIp":"20.85.147.243","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.4"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDateUtc":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null}}' - headers: - api-supported-versions: - - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview - cache-control: - - no-cache - content-length: - - '1483' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 11 May 2023 08:40: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: '{"location": "eastus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create + - identity create Connection: - keep-alive Content-Length: @@ -1459,12 +1478,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.9.7 (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: '{"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}' + string: '{"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/containerapp-user000005","name":"containerapp-user000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}' headers: cache-control: - no-cache @@ -1473,7 +1492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:10 GMT + - Mon, 26 Jun 2023 07:32:38 GMT expires: - '-1' location: @@ -1503,104 +1522,116 @@ interactions: ParameterSetName: - -n -g --environment --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:12 GMT + - Mon, 26 Jun 2023 07:32:39 GMT expires: - '-1' pragma: @@ -1628,24 +1659,25 @@ interactions: ParameterSetName: - -n -g --environment --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview 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-05-11T08:39:29.5894865","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:39:29.5894865"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"livelyhill-fd5020a5.eastus.azurecontainerapps.io","staticIp":"20.85.147.243","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"2088e352-a4b9-43b3-b6fe-d1465d7012d8","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.4"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDateUtc":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002","name":"env000002","type":"Microsoft.App/managedEnvironments","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:31:59.8494317","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:31:59.8494317"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"happyrock-84879d9c.eastus.azurecontainerapps.io","staticIp":"52.146.54.100","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"33b19981-033d-403e-8135-2ddbfa650655","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '1483' + - '1524' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:15 GMT + - Mon, 26 Jun 2023 07:32:41 GMT expires: - '-1' pragma: @@ -1677,15 +1709,16 @@ interactions: [{"name": "name", "description": null, "ipAddressRange": "1.1.1.1/10", "action": "Allow"}], "stickySessions": null, "clientCertificateMode": null, "corsPolicy": null}, "registries": null, "dapr": null, "maxInactiveRevisions": null}, "template": - {"revisionSuffix": "myrevision", "initContainers": null, "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}, "volumeMounts": null, "probes": - null}], "scale": {"minReplicas": 1, "maxReplicas": 3, "rules": [{"name": "http-scale-rule", - "azureQueue": null, "custom": null, "http": {"metadata": {"concurrentRequests": - "50", "key": "value"}, "auth": [{"secretRef": "secretref", "triggerParameter": - "trigger"}]}, "tcp": null}]}, "volumes": null}, "workloadProfileName": null, - "latestReadyRevisionName": null, "eventStreamEndpoint": null}}' + {"revisionSuffix": "myrevision", "terminationGracePeriodSeconds": 90, "initContainers": + null, "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}, + "volumeMounts": null, "probes": null}], "scale": {"minReplicas": 1, "maxReplicas": + 3, "rules": [{"name": "http-scale-rule", "azureQueue": null, "custom": null, + "http": {"metadata": {"concurrentRequests": "50", "key": "value"}, "auth": [{"secretRef": + "secretref", "triggerParameter": "trigger"}]}, "tcp": null}]}, "volumes": null, + "serviceBinds": null}, "workloadProfileName": null, "latestReadyRevisionName": + null, "eventStreamEndpoint": null}}' headers: Accept: - '*/*' @@ -1696,33 +1729,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1842' + - '1901' Content-Type: - application/json ParameterSetName: - -n -g --environment --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546Z","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:27.43546Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216Z","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:32:45.7628216Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":90,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/fb4ff71f-b3ed-4516-8de3-6e4873d34827?api-version=2023-04-01-preview&azureAsyncOperation=true + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/06f5be0f-4baa-4d86-a325-0f852da8e905?api-version=2023-04-01-preview&azureAsyncOperation=true cache-control: - no-cache content-length: - - '2690' + - '2688' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:31 GMT + - Mon, 26 Jun 2023 07:32:51 GMT expires: - '-1' pragma: @@ -1756,16 +1789,16 @@ interactions: ParameterSetName: - -n -g --environment --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/fb4ff71f-b3ed-4516-8de3-6e4873d34827?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/06f5be0f-4baa-4d86-a325-0f852da8e905?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/fb4ff71f-b3ed-4516-8de3-6e4873d34827","name":"fb4ff71f-b3ed-4516-8de3-6e4873d34827","status":"InProgress","startTime":"2023-05-11T08:40:29.8983384"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/06f5be0f-4baa-4d86-a325-0f852da8e905","name":"06f5be0f-4baa-4d86-a325-0f852da8e905","status":"InProgress","startTime":"2023-06-26T07:32:48.4763836"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -1773,7 +1806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:33 GMT + - Mon, 26 Jun 2023 07:32:53 GMT expires: - '-1' pragma: @@ -1807,16 +1840,16 @@ interactions: ParameterSetName: - -n -g --environment --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/fb4ff71f-b3ed-4516-8de3-6e4873d34827?api-version=2023-04-01-preview&azureAsyncOperation=true + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/06f5be0f-4baa-4d86-a325-0f852da8e905?api-version=2023-04-01-preview&azureAsyncOperation=true response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/fb4ff71f-b3ed-4516-8de3-6e4873d34827","name":"fb4ff71f-b3ed-4516-8de3-6e4873d34827","status":"Succeeded","startTime":"2023-05-11T08:40:29.8983384"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/06f5be0f-4baa-4d86-a325-0f852da8e905","name":"06f5be0f-4baa-4d86-a325-0f852da8e905","status":"Succeeded","startTime":"2023-06-26T07:32:48.4763836"}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -1824,7 +1857,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:37 GMT + - Mon, 26 Jun 2023 07:32:57 GMT expires: - '-1' pragma: @@ -1858,25 +1891,25 @@ interactions: ParameterSetName: - -n -g --environment --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:27.43546"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:32:45.7628216"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":90,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2802' + - '2799' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:39 GMT + - Mon, 26 Jun 2023 07:33:02 GMT expires: - '-1' pragma: @@ -1910,110 +1943,124 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:40 GMT + - Mon, 26 Jun 2023 07:33:03 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -2033,25 +2080,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:27.43546"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:32:45.7628216"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":90,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2802' + - '2799' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:43 GMT + - Mon, 26 Jun 2023 07:33:06 GMT expires: - '-1' pragma: @@ -2085,104 +2132,116 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:43 GMT + - Mon, 26 Jun 2023 07:33:07 GMT expires: - '-1' pragma: @@ -2210,104 +2269,116 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:44 GMT + - Mon, 26 Jun 2023 07:33:07 GMT expires: - '-1' pragma: @@ -2335,25 +2406,25 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:27.43546"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:32:45.7628216"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":90,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2802' + - '2799' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:46 GMT + - Mon, 26 Jun 2023 07:33:12 GMT expires: - '-1' pragma: @@ -2387,104 +2458,116 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:47 GMT + - Mon, 26 Jun 2023 07:33:11 GMT expires: - '-1' pragma: @@ -2512,25 +2595,25 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:27.43546"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:32:45.7628216"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":90,"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":[{"name":"http-scale-rule","http":{"metadata":{"concurrentRequests":"50","key":"value"},"auth":[{"secretRef":"secretref","triggerParameter":"trigger"}]}}]},"volumes":null,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2802' + - '2799' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:48 GMT + - Mon, 26 Jun 2023 07:33:13 GMT expires: - '-1' pragma: @@ -2566,7 +2649,7 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.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=2023-04-01-preview response: @@ -2575,7 +2658,7 @@ interactions: headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -2583,7 +2666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:40:49 GMT + - Mon, 26 Jun 2023 07:33:16 GMT expires: - '-1' pragma: @@ -2595,77 +2678,24 @@ interactions: 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": {"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, "rules": []}}}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - containerapp update - Connection: - - keep-alive - Content-Length: - - '525' - Content-Type: - - application/json - ParameterSetName: - - -n -g --yaml - User-Agent: - - python/3.10.11 (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/yaml000003?api-version=2023-04-01-preview - 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, 2023-04-01-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 11 May 2023 08:40:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a1ecdea5-604f-46e1-be8d-839eeb4157b7?api-version=2023-04-01-preview - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '699' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"tags": {"tagname": "value"}, "location": "eastus", "properties": {"configuration": + {"activeRevisionsMode": "Multiple", "ingress": {"external": true, "targetPort": + 80, "transport": "Auto", "traffic": [{"weight": 100, "latestRevision": true}]}}, + "template": {"revisionSuffix": "myrevision2", "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, "rules": []}}}}' headers: Accept: - '*/*' @@ -2675,29 +2705,33 @@ interactions: - containerapp update Connection: - keep-alive + Content-Length: + - '526' + Content-Type: + - application/json ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.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/a1ecdea5-604f-46e1-be8d-839eeb4157b7?api-version=2023-04-01-preview + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 11 May 2023 08:40:56 GMT + - Mon, 26 Jun 2023 07:33:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a1ecdea5-604f-46e1-be8d-839eeb4157b7?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/9458e375-bda1-447d-b9ae-47958b8329c1?api-version=2023-04-01-preview pragma: - no-cache server: @@ -2706,6 +2740,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '699' x-powered-by: - ASP.NET status: @@ -2725,26 +2761,26 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a1ecdea5-604f-46e1-be8d-839eeb4157b7?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/9458e375-bda1-447d-b9ae-47958b8329c1?api-version=2023-04-01-preview 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, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 11 May 2023 08:41:02 GMT + - Mon, 26 Jun 2023 07:33:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a1ecdea5-604f-46e1-be8d-839eeb4157b7?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/9458e375-bda1-447d-b9ae-47958b8329c1?api-version=2023-04-01-preview pragma: - no-cache server: @@ -2772,25 +2808,25 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a1ecdea5-604f-46e1-be8d-839eeb4157b7?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/9458e375-bda1-447d-b9ae-47958b8329c1?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:53.3497333"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:33:20.2860972"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision2","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision2.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision2","terminationGracePeriodSeconds":90,"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,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2654' + - '2652' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:09 GMT + - Mon, 26 Jun 2023 07:33:30 GMT expires: - '-1' pragma: @@ -2824,104 +2860,116 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:10 GMT + - Mon, 26 Jun 2023 07:33:31 GMT expires: - '-1' pragma: @@ -2949,25 +2997,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:53.3497333"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:33:20.2860972"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision2","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision2.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision2","terminationGracePeriodSeconds":90,"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,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2654' + - '2652' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:14 GMT + - Mon, 26 Jun 2023 07:33:33 GMT expires: - '-1' pragma: @@ -3001,104 +3049,116 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:14 GMT + - Mon, 26 Jun 2023 07:33:34 GMT expires: - '-1' pragma: @@ -3126,104 +3186,116 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:15 GMT + - Mon, 26 Jun 2023 07:33:35 GMT expires: - '-1' pragma: @@ -3251,25 +3323,25 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:53.3497333"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:33:20.2860972"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision2","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision2.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision2","terminationGracePeriodSeconds":90,"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,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2654' + - '2652' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:16 GMT + - Mon, 26 Jun 2023 07:33:38 GMT expires: - '-1' pragma: @@ -3303,104 +3375,116 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:16 GMT + - Mon, 26 Jun 2023 07:33:39 GMT expires: - '-1' pragma: @@ -3428,25 +3512,25 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:40:53.3497333"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision","terminationGracePeriodSeconds":null,"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,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:33:20.2860972"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision2","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision2.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision2","terminationGracePeriodSeconds":90,"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,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2654' + - '2652' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:19 GMT + - Mon, 26 Jun 2023 07:33:41 GMT expires: - '-1' pragma: @@ -3482,7 +3566,7 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.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=2023-04-01-preview response: @@ -3491,7 +3575,7 @@ interactions: headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: @@ -3499,7 +3583,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:23 GMT + - Mon, 26 Jun 2023 07:33:44 GMT expires: - '-1' pragma: @@ -3539,7 +3623,7 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview response: @@ -3548,17 +3632,17 @@ interactions: headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 11 May 2023 08:41:27 GMT + - Mon, 26 Jun 2023 07:33:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/810f3414-a43e-48d6-b9a0-3aa30dbf789b?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a07e1e18-3414-472b-861a-1deb4475d1ca?api-version=2023-04-01-preview pragma: - no-cache server: @@ -3588,73 +3672,26 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.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/810f3414-a43e-48d6-b9a0-3aa30dbf789b?api-version=2023-04-01-preview - 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, 2023-04-01-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Thu, 11 May 2023 08:41:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/810f3414-a43e-48d6-b9a0-3aa30dbf789b?api-version=2023-04-01-preview - 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.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/810f3414-a43e-48d6-b9a0-3aa30dbf789b?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a07e1e18-3414-472b-861a-1deb4475d1ca?api-version=2023-04-01-preview 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, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 11 May 2023 08:41:36 GMT + - Mon, 26 Jun 2023 07:33:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/810f3414-a43e-48d6-b9a0-3aa30dbf789b?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a07e1e18-3414-472b-861a-1deb4475d1ca?api-version=2023-04-01-preview pragma: - no-cache server: @@ -3682,25 +3719,25 @@ interactions: ParameterSetName: - -n -g --yaml User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/810f3414-a43e-48d6-b9a0-3aa30dbf789b?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationResults/a07e1e18-3414-472b-861a-1deb4475d1ca?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:41:26.6398552"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision3","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision3.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision3","terminationGracePeriodSeconds":null,"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,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:33:46.5816568"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision3","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision3.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision3","terminationGracePeriodSeconds":90,"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,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2657' + - '2652' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:43 GMT + - Mon, 26 Jun 2023 07:33:57 GMT expires: - '-1' pragma: @@ -3734,104 +3771,116 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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 + 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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2022-11-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + North","Norway East","Switzerland North","UAE North"],"apiVersions":["2023-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '10638' + - '11862' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:44 GMT + - Mon, 26 Jun 2023 07:33:58 GMT expires: - '-1' pragma: @@ -3859,25 +3908,25 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.10.11 (Windows-10-10.0.22621-SP0) AZURECLI/2.46.0 + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/yaml000003?api-version=2023-04-01-preview 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-05-11T08:40:27.43546","lastModifiedBy":"xinyupang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-05-11T08:41:26.6398552"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.85.145.46"],"latestRevisionName":"yaml000003--myrevision3","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision3.livelyhill-fd5020a5.eastus.azurecontainerapps.io","customDomainVerificationId":"D3F71C85EB6552E36A89A3E4A080C3CFB00181670B659B0003264FC673AA9B00","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.livelyhill-fd5020a5.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision3","terminationGracePeriodSeconds":null,"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,"serviceBinds":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":"404ea946-40b0-4d9b-877a-92aad6cc2bde","clientId":"d4c950c8-b68f-4238-9630-cc1bc9a39a15"}}}}' + US","tags":{"tagname":"value"},"systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T07:32:45.7628216","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T07:33:46.5816568"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["52.146.53.109"],"latestRevisionName":"yaml000003--myrevision3","latestReadyRevisionName":"yaml000003--myrevision","latestRevisionFqdn":"yaml000003--myrevision3.happyrock-84879d9c.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Multiple","ingress":{"fqdn":"yaml000003.happyrock-84879d9c.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"myrevision3","terminationGracePeriodSeconds":90,"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,"serviceBinds":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":"0e5e6b1d-dd49-41b5-9ff2-97344513d840","clientId":"ff4020d8-f9be-463c-9d46-83afbb3798bd"}}}}' headers: api-supported-versions: - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, - 2023-02-01, 2023-04-01-preview + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview cache-control: - no-cache content-length: - - '2657' + - '2652' content-type: - application/json; charset=utf-8 date: - - Thu, 11 May 2023 08:41:45 GMT + - Mon, 26 Jun 2023 07:33:58 GMT expires: - '-1' pragma: diff --git a/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_termination_grace_period_seconds.yaml b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_termination_grace_period_seconds.yaml new file mode 100644 index 00000000000..755f7f9049c --- /dev/null +++ b/src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_termination_grace_period_seconds.yaml @@ -0,0 +1,2368 @@ +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.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.7 (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 + response: + body: + string: '{"properties":{"customerId":"4c2a2b28-cd7d-48f5-a7ca-461a0201d90d","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-06-26T03:43:26.6980473Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-06-26T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-26T03:43:26.6980473Z","modifiedDate":"2023-06-26T03:43:26.6980473Z"},"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: + - '851' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43:27 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 + 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.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.7 (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 + response: + body: + string: '{"properties":{"customerId":"4c2a2b28-cd7d-48f5-a7ca-461a0201d90d","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-06-26T03:43:26.6980473Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-06-26T10:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-06-26T03:43:26.6980473Z","modifiedDate":"2023-06-26T03:43:26.6980473Z"},"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: + - '851' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43:27 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + 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.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.9.7 (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: '{"primarySharedKey":"G3tuidrv4BYlyN3vGMzGXbIH3iq3Oebdv011BrfkMtDUdv2XN7hpE7TS2Jpch67a3iI4kYybJJkDS/TVvcA3zA==","secondarySharedKey":"EyLRK72mzGJ5xMxAroheirWrgEIqTiiG2KRyzG8CM9dCrY8+GCjD2e4sCl9lKhtk9yyjyf1A1uw64KvqWC81qw=="}' + 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, 26 Jun 2023 03:43:33 GMT + expires: + - '-1' + pragma: + - no-cache + request-context: + - appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508 + 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.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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: + - containerapp env create + Connection: + - keep-alive + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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: + - 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.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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: + - 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.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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: '{"location": "eastus", "tags": null, "properties": {"daprAIInstrumentationKey": + null, "vnetConfiguration": null, "appLogsConfiguration": {"destination": "log-analytics", + "logAnalyticsConfiguration": {"customerId": "4c2a2b28-cd7d-48f5-a7ca-461a0201d90d", + "sharedKey": "G3tuidrv4BYlyN3vGMzGXbIH3iq3Oebdv011BrfkMtDUdv2XN7hpE7TS2Jpch67a3iI4kYybJJkDS/TVvcA3zA=="}}, + "customDomainConfiguration": null, "workloadProfiles": null, "zoneRedundant": + false}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env create + Connection: + - keep-alive + Content-Length: + - '446' + Content-Type: + - application/json + ParameterSetName: + - -g -n --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + 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":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:43:39.1124626Z","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:43:39.1124626Z"},"properties":{"provisioningState":"Waiting","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-6594713f.eastus.azurecontainerapps.io","staticIp":"20.242.195.205","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c2a2b28-cd7d-48f5-a7ca-461a0201d90d","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43:44 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.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403","name":"2d1b2a9f-ba82-460b-bd52-c14a928a6403","status":"InProgress","startTime":"2023-06-26T03:43:42.7745765"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403","name":"2d1b2a9f-ba82-460b-bd52-c14a928a6403","status":"InProgress","startTime":"2023-06-26T03:43:42.7745765"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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 --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403","name":"2d1b2a9f-ba82-460b-bd52-c14a928a6403","status":"InProgress","startTime":"2023-06-26T03:43:42.7745765"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03: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 + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403","name":"2d1b2a9f-ba82-460b-bd52-c14a928a6403","status":"InProgress","startTime":"2023-06-26T03:43:42.7745765"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '284' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:43: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 --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/managedEnvironmentOperationStatuses/2d1b2a9f-ba82-460b-bd52-c14a928a6403","name":"2d1b2a9f-ba82-460b-bd52-c14a928a6403","status":"Succeeded","startTime":"2023-06-26T03:43:42.7745765"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '283' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 --logs-workspace-id --logs-workspace-key + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + 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":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:43:39.1124626","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:43:39.1124626"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-6594713f.eastus.azurecontainerapps.io","staticIp":"20.242.195.205","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c2a2b28-cd7d-48f5-a7ca-461a0201d90d","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp env show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - containerapp env show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + 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":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:43:39.1124626","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:43:39.1124626"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-6594713f.eastus.azurecontainerapps.io","staticIp":"20.242.195.205","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c2a2b28-cd7d-48f5-a7ca-461a0201d90d","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002?api-version=2023-04-01-preview + 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":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:43:39.1124626","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:43:39.1124626"},"properties":{"provisioningState":"Succeeded","daprAIInstrumentationKey":null,"daprAIConnectionString":null,"vnetConfiguration":null,"defaultDomain":"nicemushroom-6594713f.eastus.azurecontainerapps.io","staticIp":"20.242.195.205","appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"4c2a2b28-cd7d-48f5-a7ca-461a0201d90d","sharedKey":null}},"zoneRedundant":false,"kedaConfiguration":{"version":"2.10.0"},"daprConfiguration":{"version":"1.10.7"},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/managedEnvironments/env000002/eventstream","customDomainConfiguration":{"customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","dnsSuffix":null,"certificateValue":null,"certificatePassword":null,"thumbprint":null,"subjectName":null,"expirationDate":null},"workloadProfiles":null,"firstPartyConfiguration":null,"infrastructureResourceGroup":null,"peerAuthentication":{"mtls":{"enabled":false}}}}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '1528' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: '{"location": "East US", "identity": {"type": "None", "userAssignedIdentities": + null}, "properties": {"environmentId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/managedEnvironments/env000002", + "configuration": {"secrets": null, "activeRevisionsMode": "single", "ingress": + {"fqdn": null, "external": true, "targetPort": 80, "transport": "auto", "exposedPort": + null, "traffic": null, "customDomains": null, "ipSecurityRestrictions": null, + "stickySessions": null}, "dapr": null, "registries": null, "service": null}, + "template": {"revisionSuffix": null, "containers": [{"image": "mcr.microsoft.com/k8se/quickstart:latest", + "name": "aca000003", "command": null, "args": null, "env": null, "resources": + null, "volumeMounts": null}], "initContainers": null, "scale": null, "volumes": + null, "serviceBinds": null, "terminationGracePeriodSeconds": 90}, "workloadProfileName": + null}, "tags": null}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp create + Connection: + - keep-alive + Content-Length: + - '953' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000003","name":"aca000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:44:18.3285529Z","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:44:18.3285529Z"},"properties":{"provisioningState":"InProgress","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.242.194.194"],"latestRevisionName":"","latestReadyRevisionName":"","latestRevisionFqdn":"","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000003.nicemushroom-6594713f.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":90,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"aca000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000003/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-04-01-preview, 2023-05-01, 2023-05-02-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + cache-control: + - no-cache + content-length: + - '2105' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44:21 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: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"InProgress","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '278' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00?api-version=2023-04-01-preview&azureAsyncOperation=true + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.App/locations/eastus/containerappOperationStatuses/5ad32848-93a8-4ffe-8ec6-42c9a3056b00","name":"5ad32848-93a8-4ffe-8ec6-42c9a3056b00","status":"Succeeded","startTime":"2023-06-26T03:44:19.7717586"}' + headers: + api-supported-versions: + - 2022-01-01-preview, 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, + 2023-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '277' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image --ingress --target-port --environment --termination-grace-period + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000003","name":"aca000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:44:18.3285529","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:44:18.3285529"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.242.194.194"],"latestRevisionName":"aca000003--tli8r1w","latestReadyRevisionName":"aca000003--tli8r1w","latestRevisionFqdn":"aca000003--tli8r1w.nicemushroom-6594713f.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000003.nicemushroom-6594713f.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":90,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"aca000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000003/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-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2207' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - containerapp show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/23.0.1 Python/3.9.7 (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":"managedEnvironments","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/certificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"managedEnvironments/managedCertificates","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"containerApps","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"jobs","locations":["North Central US (Stage)","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","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationResults","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/managedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationResults","locations":["North + Central US (Stage)","Canada Central","West Europe","North Europe","East US","East + US 2","East Asia","Australia East","Germany West Central","Japan East","UK + South","West US","Central US","North Central US","South Central US","Korea + Central","Brazil South","West US 3","France Central","South Africa North","Norway + East","Switzerland North","UAE North","Central US EUAP","East US 2 EUAP","West + US 2","Southeast Asia","Sweden Central"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/containerappsjobOperationStatuses","locations":["North + Central US (Stage)","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","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"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-04-01-preview","2023-02-01","2022-11-01-preview","2022-10-01","2022-06-01-preview","2022-03-01","2022-01-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"connectedEnvironments","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connectedEnvironments/certificates","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/connectedEnvironmentOperationStatuses","locations":["North + Central US (Stage)","North Central US","East US","East Asia","West Europe","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/billingMeters","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"},{"resourceType":"locations/availableManagedEnvironmentsWorkloadProfileTypes","locations":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01-preview","2022-11-01-preview","2022-10-01","2022-06-01-preview"],"defaultApiVersion":"2023-04-01-preview","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '11862' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:44: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 show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.9.7 (Windows-10-10.0.22621-SP0) AZURECLI/2.49.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerApps/aca000003?api-version=2023-04-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.App/containerapps/aca000003","name":"aca000003","type":"Microsoft.App/containerApps","location":"East + US","systemData":{"createdBy":"zhcheng@microsoft.com","createdByType":"User","createdAt":"2023-06-26T03:44:18.3285529","lastModifiedBy":"zhcheng@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-06-26T03:44:18.3285529"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","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","workloadProfileName":null,"outboundIpAddresses":["20.242.194.194"],"latestRevisionName":"aca000003--tli8r1w","latestReadyRevisionName":"aca000003--tli8r1w","latestRevisionFqdn":"aca000003--tli8r1w.nicemushroom-6594713f.eastus.azurecontainerapps.io","customDomainVerificationId":"0CA7D568F6126CA8723B9BDC6F6578562D277F3E04AB98A47F44299EC5A47454","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"aca000003.nicemushroom-6594713f.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,"stickySessions":null},"registries":null,"dapr":null,"maxInactiveRevisions":null,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":90,"containers":[{"image":"mcr.microsoft.com/k8se/quickstart:latest","name":"aca000003","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus.azurecontainerapps.dev/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/containerApps/aca000003/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-04-01-preview, 2023-05-01, 2023-05-02-preview + cache-control: + - no-cache + content-length: + - '2207' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 26 Jun 2023 03:45: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 +version: 1 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 886efb88b9b..a5873c3f049 100644 --- a/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py +++ b/src/containerapp/azext_containerapp/tests/latest/test_containerapp_commands.py @@ -1143,6 +1143,7 @@ def test_containerapp_create_with_yaml(self, resource_group): action: "Allow" template: revisionSuffix: myrevision + terminationGracePeriodSeconds: 90 containers: - image: nginx name: nginx @@ -1185,6 +1186,7 @@ def test_containerapp_create_with_yaml(self, resource_group): JMESPathCheck("properties.configuration.ingress.ipSecurityRestrictions[0].action", "Allow"), JMESPathCheck("properties.environmentId", containerapp_env["id"]), JMESPathCheck("properties.template.revisionSuffix", "myrevision"), + JMESPathCheck("properties.template.terminationGracePeriodSeconds", 90), JMESPathCheck("properties.template.containers[0].name", "nginx"), JMESPathCheck("properties.template.scale.minReplicas", 1), JMESPathCheck("properties.template.scale.maxReplicas", 3), @@ -1214,7 +1216,7 @@ def test_containerapp_create_with_yaml(self, resource_group): weight: 100 transport: Auto template: - revisionSuffix: myrevision + revisionSuffix: myrevision2 containers: - image: nginx name: nginx @@ -1243,7 +1245,7 @@ def test_containerapp_create_with_yaml(self, resource_group): 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.revisionSuffix", "myrevision2"), JMESPathCheck("properties.template.containers[0].name", "nginx"), JMESPathCheck("properties.template.scale.minReplicas", 1), JMESPathCheck("properties.template.scale.maxReplicas", 3), @@ -1473,3 +1475,19 @@ def test_containerapp_create_with_vnet_yaml(self, resource_group): JMESPathCheck("properties.template.scale.maxReplicas", 3) ]) clean_up_test_file(containerapp_file_name) + +class ContainerappOtherPropertyTests(ScenarioTest): + @AllowLargeResponse(8192) + @ResourceGroupPreparer(location="northeurope") + def test_containerapp_termination_grace_period_seconds(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='aca', length=24) + image = "mcr.microsoft.com/k8se/quickstart:latest" + terminationGracePeriodSeconds = 90 + create_containerapp_env(self, env, resource_group) + + self.cmd(f'containerapp create -g {resource_group} -n {app} --image {image} --ingress external --target-port 80 --environment {env} --termination-grace-period {terminationGracePeriodSeconds}') + + self.cmd(f'containerapp show -g {resource_group} -n {app}', checks=[JMESPathCheck("properties.template.terminationGracePeriodSeconds", terminationGracePeriodSeconds)])